tailwind.config.js 349 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. // const { join } = require('path');
  3. module.exports = {
  4. content: [
  5. // join(__dirname, './pages/**/*.{js,ts,jsx,tsx}'),
  6. // join(__dirname, './src/**/*.{js,ts,jsx,tsx}'),
  7. "./pages/**/*.{js,ts,jsx,tsx}",
  8. "./src/**/*.{js,ts,jsx,tsx}",
  9. ],
  10. theme: {
  11. extend: {},
  12. },
  13. plugins: [],
  14. };