1 Star 0 Fork 76

lonely_my/heyui-admin

forked from heyui/heyui-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
vvpvvp 提交于 2022-01-30 14:14 . feat: update to heyui2.0 vue3.0
const path = require('path');
const webpack = require('webpack');
const globalVars = require('./src/css/var.js');
module.exports = {
assetsDir: 'src/images',
pages: {
index: {
entry: 'src/app.js',
template: 'src/index.html',
filename: 'index.html',
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
},
css: {
loaderOptions: {
less: {
lessOptions: { globalVars }
}
}
},
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src/'),
'@components': path.resolve(__dirname, 'src/components/'),
'@common': path.resolve(__dirname, 'src/js/common/'),
'@model': path.resolve(__dirname, 'src/js/model/'),
'@js': path.resolve(__dirname, 'src/js/')
}
},
plugins: [new webpack.ProvidePlugin({})]
},
devServer: {
// proxy: {
// 此处应该配置为开发服务器的后台地址
// 配置文档: https://cli.vuejs.org/zh/config/#devserver-proxy
// '/api': {
// target: 'http://xxx.xx.xx'
// }
// }
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lonely_my/heyui-admin.git
git@gitee.com:lonely_my/heyui-admin.git
lonely_my
heyui-admin
heyui-admin
master

搜索帮助