perf!: hosting on firebase as static files

BREAKING CHANGE: not-found page is now Next.js default
This commit is contained in:
rusconn
2023-06-17 14:42:07 +09:00
parent 4d198c5b96
commit b9bedd13ef
7 changed files with 48 additions and 2 deletions

View File

@@ -9,12 +9,13 @@
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"start": "npx serve@latest out",
"deploy": "firebase deploy --project devtoysweb",
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
"fix": "pnpm lint:fix && pnpm format:write",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"preview": "next build && npx serve@latest out",
"typecheck": "tsc --noEmit",
"format:write": "pnpm format --write",
"format:check": "pnpm format --check",