diff --git a/build/index.ts b/build/index.ts new file mode 100644 index 0000000..82f2545 --- /dev/null +++ b/build/index.ts @@ -0,0 +1,3 @@ +export * from './platform'; +export * from './proxy'; +export * from './vitePlugins'; diff --git a/build/proxy.ts b/build/proxy.ts new file mode 100644 index 0000000..315f809 --- /dev/null +++ b/build/proxy.ts @@ -0,0 +1,19 @@ +/** + * Configure according to the proxy list + * @param proxyList + */ +export function resolveProxy(proxyList: [string, string][] = []) { + const proxy: Record = {}; + for (const [prefix, target] of proxyList) { + const isHttps = /^https:\/\//.test(target); + proxy[prefix] = { + target, + changeOrigin: true, + ws: true, + rewrite: path => path.replace(new RegExp(`^${prefix}`), ''), + // https is require secure=false + ...(isHttps ? { secure: false } : {}), + }; + } + return proxy; +} diff --git a/src/utils/http/faultTolerance.ts b/src/utils/http/faultTolerance.ts index a0a23b2..57a0ddc 100644 --- a/src/utils/http/faultTolerance.ts +++ b/src/utils/http/faultTolerance.ts @@ -1,5 +1,5 @@ import { Toast } from '@/utils/uniapi/prompt'; -import type { ResultEnum } from '@/enums/httpEnum'; +import { ResultEnum } from '@/enums/httpEnum'; /** * Http错误处理 diff --git a/vite.config.ts b/vite.config.ts index 8de4160..240169e 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -9,15 +9,13 @@ import type { UserConfig } from 'vite'; import { defineConfig, loadEnv } from 'vite'; import TransformPages from 'uni-read-pages-vite'; import postcssPlugins from './postcss.config'; -import { createVitePlugins } from './build/vitePlugins'; -import { currentPlatform } from './build/platform'; +import { createVitePlugins, currentPlatform, resolveProxy } from './build'; export default defineConfig(async ({ mode }) => { const root = process.cwd(); const env = loadEnv(mode, resolve(root, 'env')); const isProd = mode === 'production'; const { VITE_PROXY_PREFIX, VITE_UPLOAD_PROXY_PREFIX, VITE_BASE_URL, VITE_UPLOAD_URL, VITE_PORT } = env; - return { base: './', envDir: './env', // 自定义env目录 @@ -50,18 +48,7 @@ export default defineConfig(async ({ mode }) => { host: true, // open: true, port: Number.parseInt(VITE_PORT!, 10), - proxy: { - [VITE_PROXY_PREFIX!]: { - target: VITE_BASE_URL, - changeOrigin: true, - rewrite: (path: string) => path.replace(new RegExp(`^${VITE_PROXY_PREFIX}`), ''), - }, - [VITE_UPLOAD_PROXY_PREFIX!]: { - target: VITE_UPLOAD_URL, - changeOrigin: true, - rewrite: (path: string) => path.replace(new RegExp(`^${VITE_UPLOAD_PROXY_PREFIX}`), ''), - }, - }, + proxy: resolveProxy([[VITE_PROXY_PREFIX, VITE_BASE_URL], [VITE_UPLOAD_PROXY_PREFIX, VITE_UPLOAD_URL]]), }, // 构建配置 build: {