You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
module.exports = {
|
|
|
outputDir: '../edivorce/apps/core/static/dist/vue',
|
|
|
filenameHashing: false,
|
|
|
runtimeCompiler: true,
|
|
|
pages: {
|
|
|
filingUploader: {
|
|
|
entry: 'src/pages/filing-uploader/main.js',
|
|
|
template: 'public/filing-uploader.html',
|
|
|
filename: 'index.html',
|
|
|
chunks: ['chunk-vendors', 'chunk-common', 'filingUploader']
|
|
|
}
|
|
|
},
|
|
|
configureWebpack: {
|
|
|
optimization: {
|
|
|
splitChunks: {
|
|
|
minSize: 1
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|