npx svelte-add tailwindcss

This commit is contained in:
Ryan Gossiaux
2021-12-13 21:05:36 -08:00
parent 53adc38513
commit 263cbd0483
6 changed files with 53 additions and 3 deletions

11
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,11 @@
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [],
};
module.exports = config;