feat-配置运行环境/代理

This commit is contained in:
h_mo 2022-06-03 22:04:01 +08:00
parent b6c2773e5c
commit 459b430ed5
5 changed files with 49 additions and 5 deletions

2
.env Normal file
View File

@ -0,0 +1,2 @@
# title
VITE_APP_TITLE = uni-app Vue3 TypeScript

8
.env.development Normal file
View File

@ -0,0 +1,8 @@
# 运行环境
VITE_ENV=development
# api域名
VITE_API_URL = 'YOUR API URL'
# 上传域名
VITE_UPLOAD_URL = 'YOUR UPLOAD URL'

8
.env.production Normal file
View File

@ -0,0 +1,8 @@
# 运行环境
VITE_ENV=production
# api域名
VITE_API_URL = 'YOUR API URL'
# 上传域名
VITE_UPLOAD_URL = 'YOUR UPLOAD URL'

11
src/env.d.ts vendored
View File

@ -6,3 +6,14 @@ declare module '*.vue' {
const component: DefineComponent<{}, {}, any>;
export default component;
}
interface ImportMetaEnv {
readonly VITE_ENV: string;
readonly VITE_APP_TITLE: string;
readonly VITE_API_URL: string;
readonly VITE_UPLOAD_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}

View File

@ -8,6 +8,26 @@ import { resolve } from 'path';
// https://vitejs.dev/config/
export default defineConfig({
base: './',
resolve: {
alias: {
'@': resolve('./src'),
},
},
server: {
host: true,
proxy: {
'/api': {
target: 'http://127.0.0.0:8000',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
'/upload': {
target: 'http://127.0.0.0:8000/upload',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/upload/, ''),
},
},
},
plugins: [
uni(),
windicss(),
@ -30,9 +50,4 @@ export default defineConfig({
},
},
},
resolve: {
alias: {
'@': resolve('./src'),
},
},
});