Files
vikunja/frontend/tailwind.config.js
Dominik Pschenitschni 342bbd6192 fix: correct comments
2025-07-02 17:46:21 +02:00

18 lines
295 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
// TODO: Re-add after removing bulma base styles
preflight: false,
},
prefix: 'tw-',
content: [
'./index.html',
'./src/**/*.{vue,js,ts}',
],
theme: {
extend: {},
},
plugins: [],
}