update:增加 静态资源基础路径,用于vite打包找不到资源问题

This commit is contained in:
talktao 2022-03-25 10:55:01 +08:00
parent 993bdf5012
commit 61d87e70aa

View File

@ -8,6 +8,10 @@ export default defineConfig(({command, mode})=>{
// 检查process.cwd()路径下.env.develeport.local、.env.development、.env.local、.env这四个环境文件 // 检查process.cwd()路径下.env.develeport.local、.env.development、.env.local、.env这四个环境文件
loadEnv(mode, process.cwd()) loadEnv(mode, process.cwd())
return { return {
// 静态资源基础路径 base: './' || '',
base:'./',
resolve: { resolve: {
alias:{ alias:{
// 配置src目录 // 配置src目录
@ -20,20 +24,20 @@ export default defineConfig(({command, mode})=>{
vue(), vue(),
// 配置后Vant各组件才生效 // 配置后Vant各组件才生效
styleImport({ styleImport({
resolves: [VantResolve()], resolves: [VantResolve()],
}), }),
], ],
// 跨域代理 // 跨域代理
server:{ server:{
proxy:{ proxy:{
//这里是通过请求/api 来转发到 https://api.pingping6.com/ //这里是通过请求/api 来转发到 https://api.pingping6.com/
//假如你要请求https://api.*.com/a/a //假如你要请求https://api.*.com/a/a
//那么axios的url可以配置为 /api/a/a //那么axios的url可以配置为 /api/a/a
'/api': 'http://192.168.1.187:8080' '/api': ''
} }
} }
} }
}) })