mirror of
https://github.com/go-vikunja/vikunja.git
synced 2025-12-05 19:16:51 -06:00
18 lines
295 B
JavaScript
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: [],
|
|
}
|
|
|