From fe24ddf7af2bbd1cfe535bbd71f184ff0b2ee09f Mon Sep 17 00:00:00 2001 From: smessie Date: Tue, 10 Oct 2023 16:02:06 +0200 Subject: [PATCH] chore: Configure publicDir to use relative paths --- vite.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index 4b6b248..8d5aa65 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -15,5 +15,6 @@ export default defineConfig({ alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } - } + }, + publicDir: '' })