hostforge/next.config.mjs

10 lines
183 B
JavaScript
Raw Normal View History

2023-10-10 17:07:10 +00:00
/** @type {import("next").NextConfig} */
2024-05-23 02:41:29 +00:00
const config = {
eslint: {
// will fix linting closer to a stable release
ignoreDuringBuilds: true,
},
};
2023-10-10 17:07:10 +00:00
export default config;