From c925abb8c4ed99e35d51a25ff2e32050c7f958f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=98=84=EC=A1=B0?= Date: Wed, 11 Sep 2024 16:57:36 +0900 Subject: [PATCH] =?UTF-8?q?Chore:=20=ED=8C=A8=ED=82=A4=EC=A7=80=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/package.json | 1 - frontend/vite.config.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 5d6639e..df2a22a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,6 @@ "type": "module", "scripts": { "dev": "vite", - "dev:no-mock": "VITE_MOCKING_ENABLED=false vite", "build": "tsc -b && vite build", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index d3084c6..e706866 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -7,7 +7,7 @@ import tsconfigPaths from 'vite-tsconfig-paths'; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), tsconfigPaths(), svgr()], - base: './', + base: '/', // base 경로를 절대 경로로 수정 test: { globals: true, },