9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
eslint: {
|
|
// will fix linting closer to a stable release
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|