mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
feat-配置运行环境/代理
This commit is contained in:
parent
b6c2773e5c
commit
459b430ed5
8
.env.development
Normal file
8
.env.development
Normal 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
8
.env.production
Normal 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
11
src/env.d.ts
vendored
@ -6,3 +6,14 @@ declare module '*.vue' {
|
|||||||
const component: DefineComponent<{}, {}, any>;
|
const component: DefineComponent<{}, {}, any>;
|
||||||
export default component;
|
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;
|
||||||
|
}
|
||||||
|
@ -8,6 +8,26 @@ import { resolve } from 'path';
|
|||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
base: './',
|
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: [
|
plugins: [
|
||||||
uni(),
|
uni(),
|
||||||
windicss(),
|
windicss(),
|
||||||
@ -30,9 +50,4 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
resolve: {
|
|
||||||
alias: {
|
|
||||||
'@': resolve('./src'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user