1 Star 0 Fork 56

zhengpanone/shop-admin

forked from lipengzhou/shop-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
lipengzhou 提交于 2021-08-16 15:19 . init
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import eslintPlugin from 'vite-plugin-eslint'
import vueJsx from '@vitejs/plugin-vue-jsx'
import path from 'path'
import legacy from '@vitejs/plugin-legacy'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
eslintPlugin({
// 配置选项
cache: false // 禁用 eslint 缓存
}),
vueJsx({
// 配置选项
}),
legacy({
targets: ['defaults', 'not IE 11']
})
],
resolve: {
alias: {
'@': path.join(__dirname, 'src')
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/styles/variables.scss";'
}
}
}
// server: {
// proxy: {
// // 字符串简写写法
// // /foo/123 => http://localhost:4567/foo/123
// // '/foo': 'http://localhost:4567/foo',
// // 选项写法
// '/admin': {
// // /admin/login => https://shop.fed.lagou.com/api/admin/login
// target: 'https://shop.fed.lagou.com/api', // 代理的目标地址
// // 兼容基于名字的虚拟主机
// // a.com localhost:xxx
// // b.com localhost:xxx
// // HTTP 请求头部的 origin 字段
// // 我们在开发模式:默认的 origin 是真实的 origin:localhost:3000
// // changeOrigin: true,代理服务会把 origin 修改为目标地址 http://jsonplaceholder.typicode.com
// changeOrigin: true
// // 路径重写
// // http://jsonplaceholder.typicode.com/api/xxx
// // /api/xxx => http://jsonplaceholder.typicode.com/api/xxx
// // http://jsonplaceholder.typicode.com/xxx
// // /api/xxx => http://jsonplaceholder.typicode.com/api/xxx
// // rewrite: (path) => path.replace(/^\/api/, '')
// }
// }
// }
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhengpanone/shop-admin.git
git@gitee.com:zhengpanone/shop-admin.git
zhengpanone
shop-admin
shop-admin
master

搜索帮助