From c69bbcf215ab336a2e80e7b4cb4416cd44b17ca9 Mon Sep 17 00:00:00 2001 From: Zakhar Timoshenko Date: Mon, 27 May 2024 02:38:22 +0300 Subject: [PATCH] fix build --- vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 4cf6892..808a6f8 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,10 +10,10 @@ import mkcert from 'vite-plugin-mkcert' import { VitePWA } from 'vite-plugin-pwa' const root = process.cwd() -const appRootPath = path.join(root, `./src/app`) +const appRootPath = path.join(root, `./src/App`) const publicDir = path.join(root, `./public`) const outDir = path.join(root, `./build`) -const app = path.join(root, `./src/app/index.html`) +const app = path.join(root, `./src/App/index.html`) // eslint-disable-next-line import/no-default-export export default defineConfig(({ mode }) => {