1 Star 1 Fork 0

pluto/fc_test_system

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
pluto 提交于 2022-04-24 19:49 . 更新readme
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
import dotenv from 'dotenv';
import path from 'path';
import postcssNesting from "postcss-nesting";
import { defineConfig } from 'vite'
/* load envs */
[`.env`, `.env.${process.env.NODE_ENV}`, `.env.${process.env.NODE_ENV}.local`].forEach(item => {
dotenv.config({
path: item
})
})
/**
* postcss 插件:https://www.jianshu.com/p/21be605c6ad1
*/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.join(__dirname, 'src')
}
},
build: {
sourcemap: 'hidden'
},
css: {
postcss: {
plugins: [
postcssNesting()
]
}
},
server: {
port: 88,
open: true, //自动打开
base: "./ ", //生产环境路径
proxy: { // 本地开发环境通过代理实现跨域,生产环境使用 nginx 转发
// 正则表达式写法
'^/api': {
target: 'http://101.35.158.149:8080/', // 后端服务实际地址
changeOrigin: true, //开启代理
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chx2333/fc_test_system.git
git@gitee.com:chx2333/fc_test_system.git
chx2333
fc_test_system
fc_test_system
master

搜索帮助