hostforge/next.config.mjs
2024-05-22 22:41:29 -04:00

10 lines
183 B
JavaScript

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