[v3] debugging tailwind build with quasar & vite #17844
-
I've been hitting my head against a brick wall for a few days now and cannot for the life of me figure out what is going wrong. I have the build to the point where tailwind almost works (I can see parameters like So I was hoping someone would be able to tell me how to enable debug output for the build. Currently I have So perhaps I need to pass an option to postcss or something? tailwind.config.js: /** @type {import('tailwindcss').Config} */
module.exports = {
presets: [],
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/html5-qrcode/src/**/*.{vue,js,ts,jsx,tsx}',
],
safelist: [
{
pattern: /.*/, // <- wildcard, match EVERYTHING
},
],
theme: {
extend: {
fontFamily: {
sans: [
'"Inter Variable"',
'"Inter"',
'ui-sans-serif',
'system-ui',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
plugins: [],
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can try With regards to your issue, try removing the empty /** @type {import('tailwindcss').Config} */
module.exports = {
- presets: [],
content: [ As per the documentation:
|
Beta Was this translation helpful? Give feedback.
You can try
DEBUG=*
.With regards to your issue, try removing the empty
presets: []
member:/** @type {import('tailwindcss').Config} */ module.exports = { - presets: [], content: [
As per the documentation: