📲 Adds initial svelte app with tailwind and typescript

This commit is contained in:
Rune Harlyk
2023-05-10 21:22:28 +02:00
parent 7593296a92
commit 07a99a6248
25 changed files with 4357 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
extend: {}
},
plugins: []
};