diff --git a/CONTEXT.md b/CONTEXT.md index 028b319..c0cfe03 100644 --- a/CONTEXT.md +++ b/CONTEXT.md @@ -573,7 +573,7 @@ To add custom fonts, follow these steps: 2. **Import the font** in `src/main.tsx`: ```typescript - import '@fontsource-variable/inter'; + import '@fontsource-variable/'; ``` 3. **Update Tailwind configuration** in `tailwind.config.ts`: diff --git a/src/main.tsx b/src/main.tsx index e9b7a53..bf51fc7 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -4,6 +4,6 @@ import App from './App.tsx' import './index.css' // FIXME: a custom font should be used. Eg: -// import '@fontsource-variable/inter'; +// import '@fontsource-variable/'; createRoot(document.getElementById("root")!).render();