I’m following a tutorial on Youtube: https://youtu.be/t8ane4BDyC8?si=gpilL009M9lfHlxY
I try to do exact the same as the tutorial but it seems tailwind didn’t work
my electron app
this is my tailwind.config.js file, i try both
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/renderer/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {}
},
plugins: [require('@tailwindcss/typography')]
}
and
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/renderer/**/*.js',
'./src/renderer/**/*.jsx',
'./src/renderer/**/*.ts',
'./src/renderer/**/*.tsx'
],
theme: {
extend: {}
},
plugins: []
}
New contributor
Tran Duc Minh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1