aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: df677cfcc477f07ce88f13373c732fa4c3e2af8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  content: ['./public/index.html', './src/**/*.svelte'],
  theme: {
    extend: {},
  },
  plugins: [
    require('daisyui'),
  ],

  // Daisyui had some theme turned on by default
  daisyui: {
    themes: false,
 }
}