1
Fork 0

Next config as module

This commit is contained in:
Tobias Berger 2022-01-28 11:05:03 +00:00 committed by Tobias Berger
parent 9f4a7d7d20
commit 229819268d
Signed by: toby
GPG key ID: 2D05EFAB764D6A88

View file

@ -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;