-
SummaryI have a next.js app with the next.config file on I'm interested in reading more about this but I haven't found much in the existing documentation other than unsupported features. Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Server Actions require a server (obviously). Setting |
Beta Was this translation helpful? Give feedback.
-
Ahhhh so this is why I definitely will not use the App Router LOL |
Beta Was this translation helpful? Give feedback.
-
temporary workaround, rename to package.json next.config.ts
|
Beta Was this translation helpful? Give feedback.
Server Actions require a server (obviously). Setting
output: "export"
in your config file will generate only a set of static files (HTML/CSS/JS). You cannot combine these two features. If you try building your project, it will give you this error:> Server Actions are not supported with static export.