Use next.config.mjs for CNA templates (#60494)

As `.mjs` support for `next.config` is stable now we can swap our
default to use it instead.

Closes NEXT-2052
This commit is contained in:
JJ Kasper 2024-01-10 14:04:57 -08:00 committed by GitHub
parent ac325dfd0b
commit b16187213e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View file

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

View file

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

View file

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

View file

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

View file

@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig
export default nextConfig

View file

@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig
export default nextConfig

View file

@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig
export default nextConfig

View file

@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig
export default nextConfig