Skip to content

Commit

Permalink
fix error "next export" not work with App Router
Browse files Browse the repository at this point in the history
  • Loading branch information
minwook-shin committed Sep 4, 2023
1 parent 64cc99e commit 356e009
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
const nextConfig = {
trailingSlash: true,
output: "export",
};
module.exports = nextConfig;

0 comments on commit 356e009

Please sign in to comment.