forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(create-next-app): update empty templates (vercel#65620)
## Why? - Remove `favicon.ico` from empty templates - Update Index pages in `default-empty` templates to be the same as the `app-empty` templates - x-ref: vercel#65532
- Loading branch information
1 parent
ff6f060
commit 1571eb4
Showing
11 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-25.3 KB
packages/create-next-app/templates/default-empty/js/public/favicon.ico
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-25.3 KB
packages/create-next-app/templates/default-empty/ts/public/favicon.ico
Binary file not shown.
15 changes: 12 additions & 3 deletions
15
packages/create-next-app/templates/default-tw-empty/js/pages/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
import Head from "next/head"; | ||
|
||
export default function Home() { | ||
return ( | ||
<main> | ||
<div>Hello world!</div> | ||
</main> | ||
<> | ||
<Head> | ||
<title>Create Next App</title> | ||
<meta name="description" content="Generated by create next app" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
</Head> | ||
<main> | ||
<div>Hello world!</div> | ||
</main> | ||
</> | ||
); | ||
} |
Binary file removed
BIN
-25.3 KB
packages/create-next-app/templates/default-tw-empty/js/public/favicon.ico
Binary file not shown.
15 changes: 12 additions & 3 deletions
15
packages/create-next-app/templates/default-tw-empty/ts/pages/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
import Head from "next/head"; | ||
|
||
export default function Home() { | ||
return ( | ||
<main> | ||
<div>Hello world!</div> | ||
</main> | ||
<> | ||
<Head> | ||
<title>Create Next App</title> | ||
<meta name="description" content="Generated by create next app" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
</Head> | ||
<main> | ||
<div>Hello world!</div> | ||
</main> | ||
</> | ||
); | ||
} |
Binary file removed
BIN
-25.3 KB
packages/create-next-app/templates/default-tw-empty/ts/public/favicon.ico
Binary file not shown.