From 80a29e1486d6bf254a178552f9e04f45d9f0b816 Mon Sep 17 00:00:00 2001 From: Spencer Lochne Date: Wed, 28 May 2025 18:21:18 -0400 Subject: [PATCH] 10c Solution --- 2-copy-of-code/lesson-10/chatbot-project/vite.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/2-copy-of-code/lesson-10/chatbot-project/vite.config.js b/2-copy-of-code/lesson-10/chatbot-project/vite.config.js index 8b0f57b..569d4ef 100644 --- a/2-copy-of-code/lesson-10/chatbot-project/vite.config.js +++ b/2-copy-of-code/lesson-10/chatbot-project/vite.config.js @@ -4,4 +4,8 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], + // The value should be '/' + your repository name. For example: + // if you named your repository "my-repo" the config should be + // base: '/my-repo' + base: '/chatbot-project' })