
Reviewed-on: https://kolaente.dev/vikunja/vikunja/pulls/2513 Co-authored-by: Dominik Pschenitschni <mail@celement.de> Co-committed-by: Dominik Pschenitschni <mail@celement.de> (cherry picked from commit bbfd5270db78f800a6940e73e36b525b4724c582)
18 lines
294 B
JavaScript
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: [],
|
|
}
|
|
|