-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use app router #14
base: update-dependencies
Are you sure you want to change the base?
Use app router #14
Conversation
"include": [ | ||
"**/*.ts", | ||
"**/*.tsx", | ||
".storybook/preview.tsx", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Next rewrites the tsconfig
file whenever the dev
script is run. I don't think it's necessary but I can't figure out how to prevent this.
"**/*.tsx", | ||
".storybook/preview.tsx", | ||
"next-env.d.ts", | ||
".next/types/**/*.ts" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this necessary?
favicon.ico 404s |
Moves the Next.js pages-router approach to an app-router approach. The top level
layout.tsx
remains a React server component which implements a RootStyleRegistry, allowing for Emotion to work in the app-router.