add prefix in tailwind.config, apparently adding it in scope-tailwind doesnt work

This commit is contained in:
Andrew Pareles 2024-11-11 03:29:50 -08:00
parent c789ab2ab7
commit f713a624f9

View file

@ -1,9 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./**/*.{js,ts,tsx}'], // uses these files to decide how to transform the css file
content: ['./src2/**/*.{jsx,tsx}'], // uses these files to decide how to transform the css file
theme: {
extend: {},
},
plugins: [],
prefix: 'prefix-'
}