️ Remove static page generation (#1415)

This commit is contained in:
Luke Vella 2024-10-30 21:40:30 +00:00 committed by GitHub
parent 16f9365328
commit a2414ff8ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,6 @@
import "tailwindcss/tailwind.css";
import "../../style.css";
import languages from "@rallly/languages";
import { Toaster } from "@rallly/ui/toaster";
import { Viewport } from "next";
import { Inter } from "next/font/google";
@ -15,10 +14,6 @@ const inter = Inter({
display: "swap",
});
export async function generateStaticParams() {
return Object.keys(languages).map((locale) => ({ locale }));
}
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,