cosmos-explorer/vue.config.js

108 lines
3.0 KiB
JavaScript
Raw Permalink Normal View History

2022-09-03 01:26:47 +00:00
/* eslint-disable @typescript-eslint/no-var-requires */
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-06-03 03:24:05 +00:00
// const CompressionWebpackPlugin = require('compression-webpack-plugin')
2022-05-19 13:14:02 +00:00
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
2022-06-03 03:24:05 +00:00
// 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: {
2022-11-01 01:26:30 +00:00
optimization: {
runtimeChunk: 'single',
splitChunks: {
chunks: 'all',
maxInitialRequests: Infinity,
minSize: 120000,
maxSize: 250000,
cacheGroups: {
vendor: {
test: /node_modules/,
name() {
// get the name. E.g. node_modules/packageName/not/this/part.js
// or node_modules/packageName
// const packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)
// npm package names are URL-safe, but some servers don't like @ symbols
return 'ping.pub.chunks'
},
},
},
},
},
2021-07-21 14:07:38 +00:00
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-06-03 03:24:05 +00:00
extensions: ['.json', '.js', '.jsx', '.ts', '.tsx'],
2021-07-21 14:07:38 +00:00
},
2022-03-15 08:18:57 +00:00
plugins: [
2022-05-19 13:14:02 +00:00
new NodePolyfillPlugin(),
2022-03-15 08:18:57 +00:00
new BundleAnalyzerPlugin({
2022-04-05 15:31:06 +00:00
analyzerMode: 'disabled',
2022-03-15 08:52:29 +00:00
openAnalyzer: false,
2022-03-15 08:18:57 +00:00
}),
2022-06-03 03:24:05 +00:00
// new CompressionWebpackPlugin({
// test: new RegExp(`\\.(${productionGzipExtensions.join('|')})$`),
// threshold: 8192,
// minRatio: 0.8,
// }),
2022-03-15 08:18:57 +00:00
],
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
})
2022-05-14 03:58:29 +00:00
config.module
.rule('ts')
.test(/\.tsx?$/)
.use('ts-loader')
.loader('ts-loader')
.options({
appendTsSuffixTo: [/\.vue$/],
})
2021-07-21 14:07:38 +00:00
},
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
}