aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.cjs
blob: cbb8e558f69267c41412660d8256d9c0420982c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
const config = {
  content: ["./src/**/*.{html,svelte,ts}"],

  theme: {
    extend: {},
  },

  plugins: [],
};

module.exports = config;