Enable typechecking on config (#57892)

Co-authored-by: Lee Robinson <me@leerob.io>
Co-authored-by: Balázs Orbán <info@balazsorban.com>
This commit is contained in:
Karl Horky 2023-12-01 09:57:57 +01:00 committed by GitHub
parent 89f6322cda
commit b02a10e331
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,6 @@
/** @type {import("next").NextConfig} */
module.exports = {
const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig

View file

@ -1,4 +1,6 @@
/** @type {import("next").NextConfig} */
module.exports = {
const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig