From 493d1bfa91e247fc66ea78fd599cbd78fe1e057a Mon Sep 17 00:00:00 2001 From: Nathan Seymour Date: Wed, 29 May 2024 15:33:26 -0500 Subject: [PATCH] gh pages subdir workaround --- frontend/vite.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 05c1740..b17170e 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -4,4 +4,7 @@ import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], + + // Stop confusing GitHub Pages, please... + base: './', })