Files
ProxMenux/AppImage/next.config.mjs

15 lines
228 B
JavaScript
Raw Normal View History

2025-09-28 19:40:23 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
2025-09-28 23:05:59 +02:00
}
2025-09-28 19:40:23 +02:00
2025-09-28 23:05:59 +02:00
export default nextConfig