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' })