From 0ffa395719adb9a857bdadc8add35a768e120f3c Mon Sep 17 00:00:00 2001 From: Elena Gromova Date: Wed, 25 Sep 2024 23:49:35 +0300 Subject: [PATCH] fix --- dist/index.html | 7 +++---- index.html | 3 +-- vite.config.ts | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/dist/index.html b/dist/index.html index 1b818eb..f00a3df 100644 --- a/dist/index.html +++ b/dist/index.html @@ -2,11 +2,10 @@ - - Vite + React + TS - - + ToDo testing project + +
diff --git a/index.html b/index.html index e4b78ea..1bff449 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,8 @@ - - Vite + React + TS + ToDo testing project
diff --git a/vite.config.ts b/vite.config.ts index 5a33944..f7f2bee 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,7 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' -// https://vitejs.dev/config/ export default defineConfig({ + base: '/to-do-testing-project/', plugins: [react()], })