twinkle/next.config.mjs

9 lines
148 B
JavaScript
Raw Permalink Normal View History

2024-09-06 03:08:46 +00:00
/** @type {import('next').NextConfig} */
2024-09-06 14:48:52 +00:00
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
};
2024-09-06 03:08:46 +00:00
export default nextConfig;