Skip to content

Commit

Permalink
Use next.config.mjs for CNA templates (#60494)
Browse files Browse the repository at this point in the history
As `.mjs` support for `next.config` is stable now we can swap our
default to use it instead.

Closes NEXT-2052
  • Loading branch information
ijjk authored Jan 10, 2024
1 parent ac325df commit b161872
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}

module.exports = nextConfig
export default nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}

module.exports = nextConfig
export default nextConfig

0 comments on commit b161872

Please sign in to comment.