Browse Source

Removes unneeded webpack config

main
Eric Amodio 6 years ago
parent
commit
b1fbad5277
1 changed files with 0 additions and 14 deletions
  1. +0
    -14
      webpack.config.js

+ 0
- 14
webpack.config.js View File

@ -133,7 +133,6 @@ function getUIConfig(env) {
filename: '[name].css'
}),
new HtmlPlugin({
excludeAssets: [/.*\.main\.js/],
excludeChunks: ['welcome'],
template: 'settings/index.html',
filename: path.resolve(__dirname, 'settings.html'),
@ -153,7 +152,6 @@ function getUIConfig(env) {
: false
}),
new HtmlPlugin({
excludeAssets: [/.*\.main\.js/],
excludeChunks: ['settings'],
template: 'welcome/index.html',
filename: path.resolve(__dirname, 'welcome.html'),
@ -208,18 +206,6 @@ function getUIConfig(env) {
path: path.resolve(__dirname, 'dist/ui'),
publicPath: '{{root}}/dist/ui/'
},
optimization: {
splitChunks: {
cacheGroups: {
styles: {
name: 'styles',
test: /\.css$/,
chunks: 'all',
enforce: true
}
}
}
},
module: {
rules: [
{

Loading…
Cancel
Save