tailwind and static files init

This commit is contained in:
Per Stark
2024-12-04 17:20:57 +01:00
parent 58ddc1f824
commit f9a382db6d
10 changed files with 632 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/server/templates/**/*'
],
theme: {
extend: {},
},
plugins: [],
}