From 459b430ed58a45f0bf550624539c6e8906e77fae Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Fri, 3 Jun 2022 22:04:01 +0800 Subject: [PATCH] =?UTF-8?q?feat-=E9=85=8D=E7=BD=AE=E8=BF=90=E8=A1=8C?= =?UTF-8?q?=E7=8E=AF=E5=A2=83/=E4=BB=A3=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 2 ++ .env.development | 8 ++++++++ .env.production | 8 ++++++++ src/env.d.ts | 11 +++++++++++ vite.config.ts | 25 ++++++++++++++++++++----- 5 files changed, 49 insertions(+), 5 deletions(-) create mode 100644 .env create mode 100644 .env.development create mode 100644 .env.production diff --git a/.env b/.env new file mode 100644 index 0000000..e1b1258 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +# title +VITE_APP_TITLE = uni-app Vue3 TypeScript diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..faaac77 --- /dev/null +++ b/.env.development @@ -0,0 +1,8 @@ +# 运行环境 +VITE_ENV=development + +# api域名 +VITE_API_URL = 'YOUR API URL' + +# 上传域名 +VITE_UPLOAD_URL = 'YOUR UPLOAD URL' \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..d521e59 --- /dev/null +++ b/.env.production @@ -0,0 +1,8 @@ +# 运行环境 +VITE_ENV=production + +# api域名 +VITE_API_URL = 'YOUR API URL' + +# 上传域名 +VITE_UPLOAD_URL = 'YOUR UPLOAD URL' diff --git a/src/env.d.ts b/src/env.d.ts index 7ade2e2..64d18cd 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -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; +} diff --git a/vite.config.ts b/vite.config.ts index 7928ea3..1715213 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -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'), - }, - }, });