Update codebase.ts so that all files are read (#684)

This commit is contained in:
Will Chen
2025-07-21 21:16:00 -07:00
committed by GitHub
parent de21c6ff25
commit de73445766
33 changed files with 1435 additions and 713 deletions

View File

@@ -335,7 +335,15 @@ You need to first add Supabase to your app and then we can add auth.
===
role: user
message: This is my codebase. <dyad-file path="index.html">
message: This is my codebase. <dyad-file path=".gitignore">
// File contents excluded from context
</dyad-file>
<dyad-file path="file1.txt">
// File contents excluded from context
</dyad-file>
<dyad-file path="index.html">
<!doctype html>
<html lang="en">
<head>
@@ -417,6 +425,18 @@ createRoot(document.getElementById("root")!).render(<App />);
</dyad-file>
<dyad-file path="tsconfig.app.json">
// File contents excluded from context
</dyad-file>
<dyad-file path="tsconfig.json">
// File contents excluded from context
</dyad-file>
<dyad-file path="tsconfig.node.json">
// File contents excluded from context
</dyad-file>
<dyad-file path="vite.config.ts">
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";