From e568a6301b222209e945636308404fca20520647 Mon Sep 17 00:00:00 2001 From: Faisal N Date: Tue, 1 Oct 2024 12:18:46 +0000 Subject: [PATCH] fix error page --- vite.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/vite.config.js b/vite.config.js index 50d8a5f..5ac6126 100644 --- a/vite.config.js +++ b/vite.config.js @@ -8,6 +8,7 @@ export default { rollupOptions: { input: { main: new URL('index.html', import.meta.url).pathname, + error: new URL('404.shtml', import.meta.url).pathname, admin: new URL('admin/index.html', import.meta.url).pathname, questions: new URL('admin/questions.html', import.meta.url).pathname, upload: new URL('admin/upload.html', import.meta.url).pathname,