Files
claude-code-viewer/next.config.ts

11 lines
224 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
typescript: {
ignoreBuildErrors: true, // typechecking should be separeted by build
},
};
export default nextConfig;