Skip to content

Commit

Permalink
Update next.config.mjs to use ES modules and export default
Browse files Browse the repository at this point in the history
  • Loading branch information
SivaramPg committed Apr 16, 2024
1 parent df649de commit f26b3b6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/** @type {import('next').NextConfig} */
// @ts-check

/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: "standalone",
}

module.exports = nextConfig
export default nextConfig

0 comments on commit f26b3b6

Please sign in to comment.