fosrl.pangolin/next.config.mjs

10 lines
172 B
JavaScript
Raw Normal View History

2024-09-27 19:48:49 -04:00
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
2025-06-04 12:02:07 -04:00
ignoreDuringBuilds: true
2025-03-08 18:11:39 -05:00
},
output: "standalone"
};
2024-09-27 19:48:49 -04:00
export default nextConfig;