importtype { Config } from'tailwindcss'constconfig:Config= { content: ['./app/**/*.{js,ts,jsx,tsx,mdx}',// Note the addition of the `app` directory.'./pages/**/*.{js,ts,jsx,tsx,mdx}','./components/**/*.{js,ts,jsx,tsx,mdx}',// Or if using `src` directory:'./src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: {}, }, plugins: [],}exportdefault config
// These styles apply to every route in the applicationimport'@/styles/globals.css'importtype { AppProps } from'next/app'exportdefaultfunctionApp({ Component, pageProps }:AppProps) {return <Component {...pageProps} />}