Include 404.html in build

This commit is contained in:
Alex Gleason 2025-05-09 19:23:25 -05:00
parent 1a431c9d8a
commit 69060820f8
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -5,12 +5,12 @@
"type": "module",
"scripts": {
"dev": "npm i && vite",
"build": "npm i && vite build",
"build": "npm i && vite build && cp dist/index.html dist/404.html",
"build:dev": "npm i && vite build --mode development",
"ci": "npm i && tsc --noEmit && vite build",
"lint": "npm i && eslint .",
"preview": "npm i && vite preview",
"deploy": "npm i && vite build && npx -y surge@latest dist"
"deploy": "npm run build && npx -y surge@latest dist"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",