From d86c875fa083f18c957d36be71276952888c748e Mon Sep 17 00:00:00 2001 From: NostrDev Date: Thu, 7 Nov 2024 12:25:58 +0300 Subject: [PATCH] chore: put 404 file into right folder --- package.json | 2 +- public/{ => assets}/404.html | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename public/{ => assets}/404.html (100%) diff --git a/package.json b/package.json index a3973cb..a82e1df 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "tsc -b && vite build", + "build": "tsc -b && vite build && mv dist/assets/404.html dist", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" }, diff --git a/public/404.html b/public/assets/404.html similarity index 100% rename from public/404.html rename to public/assets/404.html