1 Star 0 Fork 5

小七全栈/elux-vue-antd-admin-fork

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
elux.config.js 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
hiisea 提交于 2022-07-18 10:56 . feat: init project
//工程配置文件,参见 https://eluxjs.com/guide/configure.html
// eslint-disable-next-line import/no-extraneous-dependencies
const antdVars = require('@elux-admin-antd/stage/assets/css/antd-var.json');
const {getLocalIP} = require('@elux/cli-utils');
const serverPort = 4003;
const apiHosts = {
local: `http://${getLocalIP()}:3003/`,
demo: 'http://api-admin-demo.eluxjs.com/',
};
const APP_ENV = process.env.APP_ENV || 'local';
module.exports = {
type: 'vue',
mockServer: {port: 3003},
cssProcessors: {less: {javascriptEnabled: true, modifyVars: antdVars}},
all: {
//开发和生成环境都使用的配置
serverPort,
clientGlobalVar: {
ApiPrefix: apiHosts[APP_ENV],
StaticPrefix: apiHosts[APP_ENV],
},
webpackConfigTransform: (config) => {
//此处可以自定义webpack配置
//console.log(config.module.rules[0]);
return config;
},
},
dev: {
//开发环境专用配置
eslint: false,
stylelint: false,
//要使用开发代理可以放开下面代码
// apiProxy: {
// '/api': {
// target: apiHosts[APP_ENV],
// pathRewrite: {
// '^/api': '',
// },
// },
// },
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/kaikai107/elux-vue-antd-admin-fork.git
git@gitee.com:kaikai107/elux-vue-antd-admin-fork.git
kaikai107
elux-vue-antd-admin-fork
elux-vue-antd-admin-fork
main

搜索帮助