17 lines
402 B
JavaScript
17 lines
402 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue,pug}"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
corePlugins: {
|
|
preflight: false,
|
|
space: false,
|
|
boxSizing: false,
|
|
divideWidth: false,
|
|
divideColor: false,
|
|
divideStyle: false,
|
|
divideOpacity: false
|
|
},
|
|
plugins: [],
|
|
} |