17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
// './app/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
|
||
|
// todo: move all to `src` directory
|
||
|
// // Or if using `src` directory:
|
||
|
// './src/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|