1 Star 0 Fork 0

VICTOR/高校毕业生就业信息管理系统web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
VICTOR 提交于 2024-01-20 11:10 . 配置文件
// vite.config.ts
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import viteEslint from 'vite-plugin-eslint'
import path from 'path'
// 引入svg需要用到的插件
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export default defineConfig(({ command, mode }) => {
// 获取各种环境下对应的变量 mode: 运行环境 process.cwd(): index.html根目录
const env = loadEnv(mode, process.cwd())
console.log(env)
return {
plugins: [
vue(),
viteEslint(),
createSvgIconsPlugin({
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
symbolId: 'icon-[dir]-[name]'
})
],
resolve: {
alias: {
'@': path.resolve('./src') // 相对路径别名配置,使用 @ 代替 src
}
},
// scss全局变量配置
css: {
preprocessorOptions: {
scss: {
javascriptEnabled: true,
additionalData: '@import "./src/styles/variable.scss";'
}
}
},
// 配置代理服务器
server: {
proxy: {
'/api': {
// 目标服务器地址
target: env.VITE_SERVE,
// 需要代理跨域
changeOrigin: true,
// 路径重写
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/victor-jie/graduation.git
git@gitee.com:victor-jie/graduation.git
victor-jie
graduation
高校毕业生就业信息管理系统web
master

搜索帮助