fosrl.pangolin/next.config.mjs

10 lines
173 B
JavaScript
Raw Normal View History

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