aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-framework-next/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-framework-next/README.md')
-rw-r--r--packages/bun-framework-next/README.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/bun-framework-next/README.md b/packages/bun-framework-next/README.md
deleted file mode 100644
index 4df8999d1..000000000
--- a/packages/bun-framework-next/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# bun-framework-next
-
-This package lets you use Next.js 12.2 with bun. This readme assumes you already installed bun.
-
-To start a new project:
-
-```bash
-bun create next --open
-```
-
-To use Next.js 12 with an existing project:
-
-```bash
-bun add bun-framework-next
-echo "framework = 'next'" > bunfig.toml
-bun bun
-```
-
-Launch the development server:
-
-```bash
-bun dev
-```
-
-Open http://localhost:3000 with your browser to see the result.