| 123456789101112131415 |
- /** @type {import('tailwindcss').Config} */
- // const { join } = require('path');
- module.exports = {
- content: [
- // join(__dirname, './pages/**/*.{js,ts,jsx,tsx}'),
- // join(__dirname, './src/**/*.{js,ts,jsx,tsx}'),
- "./pages/**/*.{js,ts,jsx,tsx}",
- "./src/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {},
- },
- plugins: [],
- };
|