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: [],
|
|
}
|
|
|