feat: migrate frontend to Next.js

This commit is contained in:
2025-06-04 09:08:32 +09:00
parent 25c771b90b
commit 1defdb8bef
5 changed files with 48 additions and 19 deletions

View File

@ -2,9 +2,10 @@
"name": "podcast-frontend",
"version": "1.0.0",
"scripts": {
"dev": "bun dev",
"build": "bun build",
"start": "bun start"
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "^18.0.0",
@ -17,7 +18,6 @@
"bun-types": "^0.1.0",
"@types/bun": "latest"
},
"module": "src/index.tsx",
"type": "module",
"private": true
}