cosmos-explorer/vue.config.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

2021-07-21 14:07:38 +00:00
const path = require('path')
module.exports = {
publicPath: '/',
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'),
},
},
},
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': {
target: 'https://lcd-cosmos.cosmostation.io/',
2021-07-22 08:18:47 +00:00
changeOrigin: true,
pathRewrite: {
'^/api': '',
},
},
},
},
2021-07-21 14:07:38 +00:00
}