2 Star 3 Fork 2

前端研究院/syt-react-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
xiumubai 提交于 2023-05-16 14:54 . feat: init
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
},
},
},
test: {
environment: 'jsdom',
globals: true,
setupFiles: './tests/index.ts'
},
server: {
open: true,
port: VITE_SERVER_PORT,
// 跨域处理
proxy: createProxy(VITE_PROXY)
},
// 去除console和debugger
esbuild: {
pure: ["console.log", "debugger"]
},
build: buildOptions()
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guigu-fe/syt-react-admin.git
git@gitee.com:guigu-fe/syt-react-admin.git
guigu-fe
syt-react-admin
syt-react-admin
master

搜索帮助