Files
portabase/next.config.mjs
T

22 lines
467 B
JavaScript
Raw Normal View History

2024-12-31 16:42:19 +01:00
2024-11-03 11:30:44 +01:00
/** @type {import('next').NextConfig} */
2024-12-31 16:42:19 +01:00
const nextConfig = {
output: "standalone",
typescript: {
//TODO fix all type errors and remove 'ignoreBuildErrors'
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
};
2024-11-03 11:30:44 +01:00
export default nextConfig;
2024-12-31 16:42:19 +01:00