Skip to content

Commit

Permalink
Merge pull request #4 from carrycooldude/main
Browse files Browse the repository at this point in the history
The error you are getting is due to the next export command.
  • Loading branch information
carrycooldude authored Jul 29, 2023
2 parents 1da3a13 + 20e739a commit 17230ba
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
const nextConfig = {
experimental: {
images: false,
},
output: "export",
router: false,
};

module.exports = nextConfig;

0 comments on commit 17230ba

Please sign in to comment.