diff --git a/turbo.json b/turbo.json
index 7c02fdd7f60..59bbe741f85 100644
--- a/turbo.json
+++ b/turbo.json
@@ -21,6 +21,8 @@
"NEXT_PUBLIC_SESSION_RECORDER_KEY",
"NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS",
"NEXT_PUBLIC_DEPLOY_WITH_NGINX",
+ "NEXT_PUBLIC_POSTHOG_KEY",
+ "NEXT_PUBLIC_POSTHOG_HOST",
"SLACK_OAUTH_URL",
"SLACK_CLIENT_ID",
"SLACK_CLIENT_SECRET",
diff --git a/web/package.json b/web/package.json
index 080a99bb857..3da1e3089fe 100644
--- a/web/package.json
+++ b/web/package.json
@@ -97,8 +97,8 @@
"eslint-config-custom": "*",
"eslint-config-next": "12.2.2",
"prettier": "^2.8.7",
- "tsconfig": "*",
"tailwind-config-custom": "*",
+ "tsconfig": "*",
"typescript": "4.7.4"
},
"resolutions": {
diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx
index 5ef047ca967..b94e52d6bd8 100644
--- a/web/pages/_app.tsx
+++ b/web/pages/_app.tsx
@@ -1,38 +1,22 @@
-// next imports
import Head from "next/head";
import dynamic from "next/dynamic";
import Router from "next/router";
-
-// themes
import { ThemeProvider } from "next-themes";
-
+import NProgress from "nprogress";
// styles
import "styles/globals.css";
import "styles/editor.css";
import "styles/command-pallette.css";
import "styles/nprogress.css";
import "styles/react-datepicker.css";
-
-// nprogress
-import NProgress from "nprogress";
-
// contexts
-import { UserProvider } from "contexts/user.context";
import { ToastContextProvider } from "contexts/toast.context";
-import { ThemeContextProvider } from "contexts/theme.context";
// types
import type { AppProps } from "next/app";
// constants
import { THEMES } from "constants/themes";
// constants
-import {
- SITE_NAME,
- SITE_DESCRIPTION,
- SITE_URL,
- TWITTER_USER_NAME,
- SITE_KEYWORDS,
- SITE_TITLE,
-} from "constants/seo-variables";
+import { SITE_TITLE } from "constants/seo-variables";
// mobx store provider
import { MobxStoreProvider } from "lib/mobx/store-provider";
import MobxStoreInit from "lib/mobx/store-init";
@@ -47,33 +31,20 @@ Router.events.on("routeChangeComplete", NProgress.done);
function MyApp({ Component, pageProps }: AppProps) {
return (
- //