File tree 4 files changed +1040
-52
lines changed
4 files changed +1040
-52
lines changed Original file line number Diff line number Diff line change 46
46
"babel-plugin-transform-class-properties" : " ^6.24.1" ,
47
47
"csp-html-webpack-plugin" : " ^5.1.0" ,
48
48
"css-loader" : " ^5.0.1" ,
49
+ "favicons" : " ^6.2.0" ,
50
+ "favicons-webpack-plugin" : " ^5.0.0-alpha.6" ,
49
51
"html-webpack-plugin" : " ^5.0.0-beta.4" ,
50
52
"http-server-spa" : " ^1.3.0" ,
51
53
"json-schema-to-typescript" : " ^10.1.2" ,
56
58
"ts-node" : " ^9.1.1" ,
57
59
"typescript" : " ^4.1.3" ,
58
60
"webpack" : " ^5.12.2" ,
59
- "webpack-cdn-plugin" : " ^3.3.1" ,
60
61
"webpack-cli" : " ^4.3.1" ,
61
62
"webpack-dev-server" : " ^3.11.1" ,
62
63
"webpack-merge" : " ^5.7.3"
Original file line number Diff line number Diff line change 1
1
const HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
2
2
const path = require ( 'path' ) ;
3
3
const webpack = require ( 'webpack' ) ;
4
- const WebpackCdnPlugin = require ( 'webpack-cdn-plugin' ) ;
5
4
const CspHtmlWebpackPlugin = require ( 'csp-html-webpack-plugin' ) ;
5
+ const FaviconsWebpackPlugin = require ( 'favicons-webpack-plugin' )
6
6
7
7
module . exports = {
8
8
entry : './src/index.ts' ,
@@ -46,16 +46,10 @@ module.exports = {
46
46
ANALYTICS_NEXT_MODERN_CONTEXT : true ,
47
47
NODE_ENV : 'development'
48
48
} ) ,
49
- /*new WebpackCdnPlugin({
50
- modules: [
51
- {
52
- name: '@atlaskit /css-reset',
53
- var: 'atlaskit-css-reset',
54
- style: 'dist/bundle.css',
55
- cssOnly: true
56
- }
57
- ],
58
- publicPath: '/node_modules'
59
- })*/
49
+ new FaviconsWebpackPlugin ( {
50
+ logo : './src/logo.svg' ,
51
+ publicPath : '/' ,
52
+ prefix : 'auto/[contenthash]'
53
+ } )
60
54
]
61
55
} ;
You can’t perform that action at this time.
0 commit comments