1 Star 0 Fork 0

ShawYoi/vue3-vite-element-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
Yoiiii 提交于 2021-05-13 14:57 . init
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import vitePluginImport from 'vite-plugin-babel-import'
// https://vitejs.dev/config/
export default ({mode})=> defineConfig({
plugins: [
vue(),
vitePluginImport([
{
libraryName: 'element-plus',
libraryDirectory: 'es',
style(name) {
return `element-plus/lib/theme-chalk/${name}.css`;
},
}
])
],
resolve:{
alias:{
'~':path.resolve(__dirname,'./'),
'@':path.resolve(__dirname,'src')
},
extensions:['.vue','.js','jsx','.json']
},
//base:mode =='development' ? './' :(mode=='beta' ? '//s.baidu.com/beta/xxx' :'//s.baidu.com/release/xxx')//发布后静态资源路径
base:'./',//静态资源放在assets中
//proxy 代理接口解除跨域
server:{
proxy:{
'/api':{
target:'',//代理目标接口,当请求路径为/api,映射到该地址,
changeOrigin:true,
rewrite:path => path.replace(/^\/api/,'')// 重新,将/api去除
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ShawYoi/vue3-vite-element-template.git
git@gitee.com:ShawYoi/vue3-vite-element-template.git
ShawYoi
vue3-vite-element-template
vue3-vite-element-template
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385