move frontend to a cmd too for consistency

This commit is contained in:
2024-12-22 21:40:21 +01:00
parent ebd82475fd
commit 3bfc20cb21
34 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,svelte,js,ts}'],
important: true,
theme: {
extend: {}
},
daisyui: {
themes: ['light', 'dark', 'cyberpunk', 'synthwave', 'retro', 'roboto', 'dracula']
},
plugins: [require('daisyui')]
};