You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 22, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+14-4
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,28 @@
1
-
This is a [Next.js](https://nextjs.org/)project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
1
+
This is an opinonated Next.js starter project that makes it relatively simple to spin up a new project.
2
2
3
3
## Getting Started
4
4
5
5
First, run the development server:
6
6
7
7
```bash
8
-
npm run dev
9
-
# or
10
8
yarn dev
11
9
```
12
10
11
+
If you'd like serverless function support:
12
+
13
+
```bash
14
+
vercel dev
15
+
```
16
+
17
+
I'm personally in the "just do Next.js the Vercel way because it gives me modern best practices without a lot of friction" but if you've got other preferences you probably know how to manage them anyway.
18
+
13
19
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14
20
15
-
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
21
+
You can start editing the page by modifying `src/pages/index.js`. The page auto-updates as you edit the file.
22
+
23
+
You can also add mdx files in `src/pages/` and they will be presented at the cooresponding route.
0 commit comments