-
-
Notifications
You must be signed in to change notification settings - Fork 232
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
Support for Next 13 App #399
Comments
@saltyshiomix when is the upgrade to nextjs 13 coming? |
Sorry for late reply 🙇 I will release Here is a new roadmaps: |
@saltyshiomix if next13 is already supported. can we upgrade our existing repo using prev nextron ? |
next js 13.3 works with nextron i use it but i am happy when it is offical @saltyshiomix |
@remendes @kacperkwapisz @aztran @noevermaurice Sorry for late reply and inconvenience. I just released nextron v9.0.0, which supports next.js v13 and v14. NOTE: Please update renderer/next.config.js as belows: module.exports = {
output: 'export',
// we want to change distDir to "app" so as nextron can build the app in production mode!
distDir: process.env.NODE_ENV === 'production' ? '../app' : '.next',
trailingSlash: true,
images: {
unoptimized: true,
},
} |
I need to use Next 13 App with its corresponding features and directory structure.
When installed, I found nextron adds next 12.3.4 version with its package.json.
Can I upgrade directly to next 13.4.5?
How can I reorganize the directory structure to use
app
,api
,[other]
, etc ?Can can I setup nextron to start at
src\page.tsx
as on NextJs 13?The text was updated successfully, but these errors were encountered: