[WEB-3985] feat: common postcss config and local fonts across all plane applications (#6998)

* [WEB-3985] feat: common postcss config and local fonts across all plane applications

* improvement: split fonts into a separate exports
This commit is contained in:
Prateek Shourya 2025-05-09 14:26:29 +05:30 committed by GitHub
parent e401c9d6e4
commit 30db59534d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 51 additions and 62 deletions

View file

@ -3,18 +3,16 @@
import { ReactNode } from "react";
import { ThemeProvider, useTheme } from "next-themes";
import { SWRConfig } from "swr";
// ui
// plane imports
import { ADMIN_BASE_PATH, DEFAULT_SWR_CONFIG } from "@plane/constants";
import { Toast } from "@plane/ui";
import { resolveGeneralTheme } from "@plane/utils";
// constants
// helpers
// lib
import { InstanceProvider } from "@/lib/instance-provider";
import { StoreProvider } from "@/lib/store-provider";
import { UserProvider } from "@/lib/user-provider";
// styles
import "./globals.css";
import "@/styles/globals.css";
const ToastWithTheme = () => {
const { resolvedTheme } = useTheme();