forked from AkkomaGang/akkoma-fe
fixed build speed
This commit is contained in:
parent
3e68514981
commit
1387589ac9
2 changed files with 6 additions and 0 deletions
|
@ -20,6 +20,11 @@ module.exports = {
|
|||
publicPath: process.env.NODE_ENV === 'production' ? config.build.assetsPublicPath : config.dev.assetsPublicPath,
|
||||
filename: '[name].js'
|
||||
},
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
chunks: 'all'
|
||||
}
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js', '.vue'],
|
||||
modules: [
|
||||
|
|
|
@ -14,6 +14,7 @@ module.exports = merge(baseWebpackConfig, {
|
|||
module: {
|
||||
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
|
||||
},
|
||||
mode: 'development',
|
||||
// eval-source-map is faster for development
|
||||
devtool: '#eval-source-map',
|
||||
plugins: [
|
||||
|
|
Loading…
Reference in a new issue