From 229819268deddb2c4dc289222b211fcc384b21cf Mon Sep 17 00:00:00 2001 From: Tobias Berger <14962962+Toby222@users.noreply.github.com> Date: Fri, 28 Jan 2022 11:05:03 +0000 Subject: [PATCH] Next config as module --- next.config.js => next.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename next.config.js => next.config.mjs (77%) 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;