From 0cae870ee742a8792f0cf8db0eaac1cbc91662de Mon Sep 17 00:00:00 2001 From: mguinhos Date: Fri, 18 Aug 2023 02:20:40 -0300 Subject: [PATCH] Corrige `error "next export" does not work with App Router.` no Actions --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 9355ff6..2e992c7 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', }; module.exports = nextConfig;