Support for Next.js 13
See original GitHub issueSince Next.js 13 was released yesterday, the beta docs list Stitches as not being support as of right now.
There is however a guide on how to integrate styled-jsx
that look very similar to how Stitches could be integrated: https://beta.nextjs.org/docs/styling/css-in-js
Are there any plans to officially offer support for Next.js 13?
Issue Analytics
- State:
- Created a year ago
- Reactions:142
- Comments:12
Top Results From Across the Web
Blog - Next.js 13
Next.js 13 introduces layouts, React Server Components, and streaming in the app directory, as well as Turbopack, an improved image ...
Read more >Blog - Next.js 13.1
Next.js 13.1 · Improved reliability and support for app directory · Built-in module transpilation (stable) · Import resolution for smaller bundles.
Read more >Getting Started | Next.js
Get started with Next.js in the official documentation, and learn more about all our features!
Read more >Upgrade Guide - Next.js
Next.js 13 introduces a new app directory with new features and conventions. However, upgrading to Next.js 13 does not require using the new ......
Read more >Next.js 13 Upgrade Guide
Next.js 13 introduced a new app directory with new features and conventions. However, upgrading to Next.js 13 does not require using the new...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jpmaga
css
utility method breaks the app (both on client and server). And stitches should update the docs for next 13 app dir. Because its a totally different way of doing things than the pages directoryThis link shows how it worked for me, but only on the client side. https://stackblitz.com/edit/nextjs-ftij4p?file=app/ServerStylesSheet.tsx
But all pages and components you need to use with stitches, you put this flag on top the code
'use client'
. This specify the component or page is run on client side.