Web M&M
https://mam.matfyz.cz
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.
62 lines
1.7 KiB
62 lines
1.7 KiB
const BundleTracker = require("webpack-bundle-tracker");
|
|
|
|
const pages = {
|
|
'vue_app_01': {
|
|
entry: './src/main.js',
|
|
chunks: ['chunk-vendors']
|
|
},
|
|
/* 'vue_app_02': {
|
|
entry: './src/newhampshir.js',
|
|
chunks: ['chunk-vendors']
|
|
},
|
|
*/
|
|
}
|
|
|
|
module.exports = {
|
|
pages: pages,
|
|
filenameHashing: false,
|
|
productionSourceMap: true,
|
|
publicPath: process.env.NODE_ENV === 'production'
|
|
? '/static/seminar/vue/'
|
|
: 'http://localhost:8080/',
|
|
outputDir: '../seminar/static/seminar/vue/',
|
|
|
|
chainWebpack: config => {
|
|
|
|
config.optimization.minimize(false)
|
|
config.optimization
|
|
.splitChunks({
|
|
cacheGroups: {
|
|
vendor: {
|
|
test: /[\\/]node_modules[\\/]/,
|
|
name: "chunk-vendors",
|
|
chunks: "all",
|
|
priority: 1
|
|
},
|
|
},
|
|
}).minimize(false);
|
|
|
|
Object.keys(pages).forEach(page => {
|
|
config.plugins.delete(`html-${page}`);
|
|
config.plugins.delete(`preload-${page}`);
|
|
config.plugins.delete(`prefetch-${page}`);
|
|
})
|
|
|
|
config
|
|
.plugin('BundleTracker')
|
|
.use(BundleTracker, [{filename: '../vue_frontend/webpack-stats.json'}]);
|
|
|
|
config.resolve.alias
|
|
.set('__STATIC__', 'static')
|
|
|
|
config.devServer
|
|
.public('http://localhost:8080')
|
|
.host('localhost')
|
|
.port(8080)
|
|
.hotOnly(true)
|
|
.watchOptions({poll: 1000})
|
|
.https(false)
|
|
.headers({"Access-Control-Allow-Origin": ["*"]})
|
|
|
|
}
|
|
};
|
|
|