Files
lederle-text-analyzer/next.config.ts
2025-03-28 10:11:26 +01:00

15 lines
272 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
output: 'standalone',
};
export default nextConfig;