Skip to content

Commit

Permalink
Minimal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SteakFisher committed Jun 14, 2024
1 parent 9f1b2d0 commit ecb1d68
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 2 deletions.
7 changes: 6 additions & 1 deletion environment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ declare global {
TURSO_DB_URL: string;

FIREBASE_SERVICE_ACCOUNT_KEY: string;

AUTH_SECRET: string;

AUTH_GOOGLE_ID: string;
AUTH_GOOGLE_SECRET: string;
}
}
}

// If this file has no import/export statements (i.e. is a script)
// convert it into a module by adding an empty export statement.
export {}
export {};
64 changes: 64 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"autosize": "^6.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
Expand Down
6 changes: 5 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { Toaster } from "@/components/ui/sonner"
import { Toaster } from "@/components/ui/sonner";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";

const inter = Inter({ subsets: ["latin"] });

Expand All @@ -20,6 +22,8 @@ export default function RootLayout({
<body className={inter.className}>
<main>
{children}
<Analytics />
<SpeedInsights />
</main>
<Toaster />
</body>
Expand Down

0 comments on commit ecb1d68

Please sign in to comment.