948f64c295
A whole 30k... Changing Vue Material imports didn't change the vendor bundle at all; something still isn't right, but it's not a show-stopper
17 lines
412 B
JavaScript
17 lines
412 B
JavaScript
const webpack = require('webpack')
|
|
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
|
module.exports = {
|
|
outputDir: '../MyPrayerJournal.Api/wwwroot',
|
|
configureWebpack: {
|
|
plugins: [
|
|
// new BundleAnalyzerPlugin(),
|
|
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
|
|
],
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: 'all'
|
|
}
|
|
}
|
|
}
|
|
}
|