blob: a2629b6419e228d129002f6d366a50f795f15d00 [file] [log] [blame]
Skyler Grey7177bbd2023-06-01 03:26:31 +02001/** @type {import('tailwindcss').Config}*/
2const config = {
3 content: ['./src/**/*.{html,js,svelte,ts}'],
4
5 theme: {
6 extend: {}
7 },
8
9 plugins: []
10};
11
12module.exports = config;