Files
vikunja/frontend/tailwind.config.js
2024-09-18 11:36:06 +02:00

18 lines
294 B
JavaScript

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