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'), - }, - }, });