My NextJS starter to setup my preffered nextjs stack
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: [
4 './app/**/*.{js,ts,jsx,tsx,mdx}',
5 './pages/**/*.{js,ts,jsx,tsx,mdx}',
6 './components/**/*.{js,ts,jsx,tsx,mdx}',
7
8 // Or if using `src` directory:
9 './src/**/*.{js,ts,jsx,tsx,mdx}',
10 ],
11 theme: {
12 extend: {},
13 },
14 plugins: [],
15};