3 Star 0 Fork 0

XiaYk/statis-manage-mobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
zhangjian1993 提交于 2023-11-23 12:05 . '1'
const path = require('path')
const { VantResolver } = require('unplugin-vue-components/resolvers');
const ComponentsPlugin = require('unplugin-vue-components/webpack');
function resolve(dir) {
return path.join(__dirname, dir)
}
const vueConfig = {
publicPath: './',
configureWebpack: {
plugins: [
ComponentsPlugin({
resolvers: [VantResolver()],
}),
],
},
chainWebpack: (config) => {
config.resolve.alias.set('@$', resolve('src'))
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule
.oneOf('inline')
.resourceQuery(/inline/)
.use('vue-svg-icon-loader')
.loader('vue-svg-icon-loader')
.end()
.end()
.oneOf('external')
.use('file-loader')
.loader('file-loader')
.options({
name: 'assets/[name].[hash:8].[ext]'
})
},
css: {
loaderOptions: {
less: {
lessOptions: {
javascriptEnabled: true
}
}
}
},
devServer: {
// development server port 8000
port: 8000,
// If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
proxy: {
'/api': {
target: 'https://66manage.org/api/',
//target: 'http://127.0.0.1:10085/api/',
pathRewrite: { '^/api': '' }
}
},
client: {
overlay: false
}
},
// disable source map in production
productionSourceMap: false,
lintOnSave: false,
// babel-loader no-ignore node_modules/*
transpileDependencies: []
}
module.exports = vueConfig
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiayk/statis-manage-mobile.git
git@gitee.com:xiayk/statis-manage-mobile.git
xiayk
statis-manage-mobile
statis-manage-mobile
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385