cosmos-explorer/vue.config.js

74 lines
1.9 KiB
JavaScript
Raw Normal View History

2021-07-21 14:07:38 +00:00
const path = require('path')
2022-03-14 14:43:44 +00:00
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
2022-03-15 08:18:57 +00:00
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']
2021-07-21 14:07:38 +00:00
module.exports = {
publicPath: '/',
2021-08-08 04:42:50 +00:00
productionSourceMap: false,
2021-07-21 14:07:38 +00:00
css: {
loaderOptions: {
sass: {
sassOptions: {
includePaths: ['./node_modules', './src/assets'],
},
},
},
},
configureWebpack: {
resolve: {
alias: {
'@themeConfig': path.resolve(__dirname, 'themeConfig.js'),
'@core': path.resolve(__dirname, 'src/@core'),
'@validations': path.resolve(__dirname, 'src/@core/utils/validations/validations.js'),
'@axios': path.resolve(__dirname, 'src/libs/axios'),
},
},
2022-03-15 08:18:57 +00:00
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
}),
new CompressionWebpackPlugin({
test: new RegExp(`\\.(${productionGzipExtensions.join('|')})$`),
threshold: 8192,
minRatio: 0.8,
}),
],
2021-07-21 14:07:38 +00:00
},
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
// eslint-disable-next-line no-param-reassign
options.transformAssetUrls = {
img: 'src',
image: 'xlink:href',
'b-avatar': 'src',
'b-img': 'src',
'b-img-lazy': ['src', 'blank-src'],
'b-card': 'img-src',
'b-card-img': 'src',
'b-card-img-lazy': ['src', 'blank-src'],
'b-carousel-slide': 'img-src',
'b-embed': 'src',
}
return options
})
},
transpileDependencies: ['vue-echarts', 'resize-detector'],
2021-07-22 08:18:47 +00:00
devServer: {
proxy: {
2021-07-22 13:06:08 +00:00
'/api': {
2021-11-13 09:03:49 +00:00
target: 'https://cosmos.api.ping.pub/',
2021-07-22 08:18:47 +00:00
changeOrigin: true,
pathRewrite: {
'^/api': '',
},
},
},
},
2021-07-21 14:07:38 +00:00
}