1 Star 0 Fork 1

IT-NuanxinPro/react-admin

forked from ruoyi/react-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 916 Bytes
一键复制 编辑 原始数据 按行查看 历史
South 提交于 2023-12-26 22:07 . fix: 重复刷新
import { defineConfig, loadEnv } from 'vite';
import { handleEnv } from './build/utils/helper';
import { createProxy } from './build/vite/proxy';
import { createVitePlugins } from './build/plugins';
import { buildOptions } from './build/vite/build';
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const root = process.cwd();
const env = loadEnv(mode, root);
const viteEnv = handleEnv(env);
const { VITE_SERVER_PORT, VITE_PROXY } = viteEnv;
return {
plugins: createVitePlugins(),
resolve: {
alias: {
'@': '/src',
'#': '/types'
}
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
charset: false
},
},
},
server: {
open: true,
port: VITE_SERVER_PORT,
// 跨域处理
proxy: createProxy(VITE_PROXY)
},
build: buildOptions()
};
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/IT-NuanxinPro/react-admin.git
[email protected]:IT-NuanxinPro/react-admin.git
IT-NuanxinPro
react-admin
react-admin
main

搜索帮助