You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
new_company/vue.config.js

26 lines
562 B
JavaScript

5 months ago
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
module.exports = {
devServer:{
proxy: {
5 months ago
'/api':{
target:'http://192.168.10.54:9100/v1',
5 months ago
changOrigin:true,
pathRewrite:{
'^/api':''
}
}
}
},
configureWebpack: {
optimization: {
minimizer: [
new CssMinimizerPlugin(),
],
2 months ago
splitChunks: {
chunks: 'all'
}
5 months ago
}
}
}