mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a1dbc073e4
This PR updates the `with-goober` example to use the App Router. Here
are the changes that have been made:
- Renamed the `pages` folder to the` app` folder.
- Converted the `index.tsx` to ` page.tsx ` file as part of the App
Router.
- Created a new `layout.tsx` file in the app directory.
- Merged functionality from both `_app.tsx` and `_document.tsx` into
`layout.tsx`:
- Goober setup from `_app.tsx`
- CSS extraction and injection from `_document.tsx`
- Updated the `package.json` file.
The following actions were performed as part of this PR:
- Ran `pnpm prettier-check` with no issues found.
- Executed the `pnpm check-examples` script.
**CC:** @samcx
---------
Co-authored-by: samcx <sam@vercel.com>
22 lines
429 B
JSON
22 lines
429 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"goober": "^2.1.16",
|
|
"goober-autoprefixer": "^1.2.3",
|
|
"next": "latest",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.7.6",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "18.3.1",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|