From 2791d058e9c12c6dbc591644947bae44414a297a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raphae=CC=88l=20Goetter?= Date: Wed, 18 Sep 2024 07:29:24 +0200 Subject: [PATCH] fix(404): modifie le fichier `error` en `404` pour GH Pages --- error.html => 404.html | 0 vite.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename error.html => 404.html (100%) diff --git a/error.html b/404.html similarity index 100% rename from error.html rename to 404.html diff --git a/vite.config.js b/vite.config.js index c14cac8..999f333 100644 --- a/vite.config.js +++ b/vite.config.js @@ -31,7 +31,7 @@ export default defineConfig({ rollupOptions: { input: { main: resolve(__dirname, "index.html"), - error: resolve(__dirname, "error.html"), + error: resolve(__dirname, "404.html"), }, }, },