9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|