Skip to content

Commit

Permalink
linkedin-link-added-to-footer (#517)
Browse files Browse the repository at this point in the history
* linkedin-link-added-to-footer

* SENTRY_AUTH_TOKEN fix

---------

Co-authored-by: etsraphael <[email protected]>
  • Loading branch information
Saravana-kumar-j and etsraphael authored Sep 4, 2024
1 parent 6b39b4a commit 273700a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions UI/src/app/data/socialMediaCard.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,10 @@ export const footerListData: SocialMediaCardItem[] = [
text: 'Instagram',
url: 'https://www.instagram.com/chainbrary',
icon: 'bi-instagram'
},
{
text: 'LinkedIn',
url: 'https://www.linkedin.com/company/chainbrary/',
icon: 'bi-linkedin'
}
];
14 changes: 10 additions & 4 deletions UI/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
const SentryWebpackPlugin = require('@sentry/webpack-plugin');

module.exports = {
devtool: 'source-map',
plugins: [
const plugins = [];

if (process.env.SENTRY_AUTH_TOKEN) {
plugins.push(
new SentryWebpackPlugin({
org: 'chainbrary',
project: 'chainbrary-ui',
authToken: process.env.SENTRY_AUTH_TOKEN,
include: './dist/chainbrary',
release: '0.0.3'
})
]
);
}

module.exports = {
devtool: 'source-map',
plugins: plugins
};

0 comments on commit 273700a

Please sign in to comment.