1 Star 0 Fork 25

Devin/vue3+ant-design-vue3.0 后台全栈管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
答案 提交于 2021-09-14 18:01 . 商品详情api对接
const isProd = process.env.NODE_ENV === 'production'
const assetsCDN = {
// webpack build externals
externals: {
vue: 'Vue',
'vue-router': 'VueRouter',
vuex: 'Vuex',
axios: 'axios'
},
css: [],
// https://unpkg.com/browse/vue@2.6.10/
js: [
'//cdn.jsdelivr.net/npm/vue@3.0.0/dist/vue.min.js',
'//cdn.jsdelivr.net/npm/vue-router@4.1.3/dist/vue-router.min.js',
'//cdn.jsdelivr.net/npm/vuex@3.6.2/dist/vuex.min.js',
'//cdn.jsdelivr.net/npm/axios@0.21.1/dist/axios.min.js'
]
}
const vueConfig = {
runtimeCompiler: true,
css: {
//设置Ant-Desint 主题
loaderOptions: {
less: {
modifyVars: {
// less vars,customize ant design theme
// 'primary-color': '#1890ff',
// 'link-color': '#1890ff',
// 'border-radius-base': '4px'
},
// DO NOT REMOVE THIS LINE
javascriptEnabled: true
}
}
},
devServer: {
// development server port 8000
hot: true, //热加载
open: true,
port: 9999,
// proxy: {
// '/api': {
// target: 'http://192.168.101.112:99/',
// // ws: false,
// changeOrigin: true,
// pathRewrite: {
// '^/api': 'http://192.168.101.112:9999/'
// }
// }
// }
},
productionSourceMap: false,
lintOnSave: false,
}
module.exports = vueConfig
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/devin_jiang/crm-template.git
git@gitee.com:devin_jiang/crm-template.git
devin_jiang
crm-template
vue3+ant-design-vue3.0 后台全栈管理系统
master

搜索帮助