From 718c2df9167503af94913e1ee6e91a94c6459281 Mon Sep 17 00:00:00 2001 From: Raphix Date: Fri, 29 Aug 2025 11:27:44 +0200 Subject: [PATCH] Version 1.0.0-rc5 - Modif Vite Builder --- vite.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vite.config.js b/vite.config.js index 747f644..d735404 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,13 +3,13 @@ import vue from '@vitejs/plugin-vue' import path from 'path' import VitePluginVueDevTools from 'vite-plugin-vue-devtools' -// https://vite.dev/config/ export default defineConfig({ + base: '/', // <-- IMPORTANT : chemins des assets corrects plugins: [vue(), VitePluginVueDevTools()], resolve: { alias: { - "@": path.resolve(__dirname, 'src'), - "@public": path.resolve(__dirname, 'public'), + "@": path.resolve(__dirname, 'src'), + "@public": path.resolve(__dirname, 'public'), } } -}) \ No newline at end of file +})