From 959381dd26061fecedf823af37b940727130a0d0 Mon Sep 17 00:00:00 2001 From: GregdTd Date: Sun, 28 Jan 2024 17:42:13 +0100 Subject: [PATCH] Update vite's base config --- vite.config.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 78d91aa..3ab7693 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,13 +4,13 @@ import svgr from 'vite-plugin-svgr' // https://vitejs.dev/config/ export default defineConfig({ - plugins: [ - react(), - svgr({ - svgrOptions: { - // svgr options - }, - }), - ], - base: 'https://gregdtd.github.io/', + plugins: [ + react(), + svgr({ + svgrOptions: { + // svgr options + } + }) + ], + base: 'https://www.mariagejuliegregoire.detrogoff.fr/' })