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.
 
 
 
 

45 lines
1.0 KiB

const { defineConfig } = require('@vue/cli-service')
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
const CompressionPlugin = require("compression-webpack-plugin")
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 8080
},
configureWebpack: {
// watch: true,
experiments: {
topLevelAwait: true
},
plugins: [
new NodePolyfillPlugin(),
new CompressionPlugin({
test: /\.js(\?.*)?$/i,
}),
new BundleAnalyzerPlugin()
],
optimization: {
splitChunks: {
chunks: "all",
},
},
resolve: {
fallback: {
"fs": false,
"tls": false,
"net": false,
"utf-8-validate": false,
"bufferutil": false
}
},
},
chainWebpack: config => {
config.module
.rule('yaml')
.test(/\.ya?ml?$/)
.use('yaml-loader')
.loader('yaml-loader')
}
})