refactoring of everything

This commit is contained in:
2023-11-02 10:46:12 +01:00
parent c6f5de405f
commit e04c6a5079
31 changed files with 893 additions and 272 deletions

View File

@ -1,3 +1,6 @@
const daisyui = require("daisyui");
const typography = require("@tailwindcss/typography");
/** @type {import('tailwindcss').Config}*/
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
@ -6,7 +9,7 @@ const config = {
extend: {},
},
plugins: [],
plugins: [typography, daisyui],
};
module.exports = config;