From 4a95b30a0d733bf46a46dcf9b2544810ebb8ed29 Mon Sep 17 00:00:00 2001 From: Wentao Lyu <35-wentao.lyu@users.noreply.git.stereye.tech> Date: Mon, 3 Apr 2023 21:31:59 +0800 Subject: [PATCH] fix: proxy auth in vite.config.js --- client/vite.config.ts | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/client/vite.config.ts b/client/vite.config.ts index 180789f29e..73edb63a9c 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -1,29 +1,33 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react"; +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; import path from 'path'; // https://vitejs.dev/config/ export default defineConfig({ server: { - host: "localhost", + host: 'localhost', port: 3090, strictPort: false, proxy: { - "/api": { - target: "http://localhost:3080", - changeOrigin: true, + '/api': { + target: 'http://localhost:3080', + changeOrigin: true + }, + '/auth': { + target: 'http://localhost:3080', + changeOrigin: true } } }, plugins: [react()], - publicDir: "./public", + publicDir: './public', build: { sourcemap: true, - outDir: "./dist", + outDir: './dist' }, resolve: { alias: { - "~": path.join(__dirname, "src/"), - }, - }, + '~': path.join(__dirname, 'src/') + } + } });