This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import "../styles/globals.css"; | |
| import type { AppProps } from "next/app"; | |
| import useEvents from "../gtm/useEvents"; | |
| import Tag from "../gtm/Tag"; | |
| function MyApp({ Component, pageProps }: AppProps) { | |
| useEvents(); | |
| return ( | |
| <> | |
| <Tag /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Config for VsCode Tailwind CSS IntelliSense extension for React | |
| // Type hints for className and class attributes | |
| "tailwindCSS.classAttributes": [ | |
| "class", | |
| "className", | |
| ], | |
| // Type hints for variables and properties ending with *className | |
| "tailwindCSS.experimental.classRegex": [ |
OlderNewer