diff --git a/next.config.js b/next.config.mjs similarity index 77% rename from next.config.js rename to next.config.mjs index bbc55ee..40f2432 100644 --- a/next.config.js +++ b/next.config.mjs @@ -1,4 +1,7 @@ -module.exports = { +/** + * @type {import('next').NextConfig} + */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, @@ -14,3 +17,4 @@ module.exports = { return config; }, }; +export default nextConfig;