tailwind.config.js 164 字节
Newer Older
1
module.exports = {
2
  purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
3 4 5 6 7 8
  theme: {
    extend: {},
  },
  variants: {},
  plugins: [],
}