websocket fix

This commit is contained in:
Andreas
2023-12-28 16:18:50 +07:00
parent 15e3236ab9
commit 90bd1db9c0
2 changed files with 18 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
import "../styles/globals.scss";
import { Poppins } from "next/font/google";
import { Metadata } from "next";
import { Metadata, Viewport } from "next";
import FiefWrapper from "../(auth)/fiefWrapper";
import UserInfo from "../(auth)/userInfo";
import { ErrorProvider } from "../(errors)/errorContext";
@@ -17,7 +17,15 @@ import { SESSION_COOKIE_NAME } from "../lib/fief";
const poppins = Poppins({ subsets: ["latin"], weight: ["200", "400", "600"] });
export const viewport: Viewport = {
themeColor: 'black',
width: "device-width",
initialScale: 1,
maximumScale: 1,
}
export const metadata: Metadata = {
metadataBase: process.env.DEV_URL || "https://reflector.media",
title: {
template: "%s Reflector",
default: "Reflector - AI-Powered Meeting Transcriptions by Monadical",
@@ -54,12 +62,6 @@ export const metadata: Metadata = {
shortcut: "/r-icon.png",
apple: "/r-icon.png",
},
viewport: {
width: "device-width",
initialScale: 1,
maximumScale: 1,
},
robots: { index: false, follow: false, noarchive: true, noimageindex: true },
};