Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions apps/web/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
merged_text.txt
prompt*.md

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
Expand Down
8 changes: 7 additions & 1 deletion apps/web/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true, // Allows the build even with TypeScript errors
},
eslint: {
ignoreDuringBuilds: true, // Skips ESLint checks during builds
},
output: "standalone", // Enables standalone build (useful for custom deployments)
};

export default nextConfig;
Loading
Loading