css issues
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 33s
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 33s
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
module.exports = {
|
export default {
|
||||||
plugins: {
|
plugins: {
|
||||||
'@tailwindcss/postcss': {},
|
'@tailwindcss/postcss': {},
|
||||||
autoprefixer: {},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -1,7 +1,14 @@
|
|||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
content: [
|
content: [
|
||||||
|
// The entry point HTML file
|
||||||
"./index.html",
|
"./index.html",
|
||||||
"./App.tsx", // Be very specific for this test
|
|
||||||
|
// Root-level components and entry points
|
||||||
|
"./App.tsx",
|
||||||
|
"./index.tsx",
|
||||||
|
|
||||||
|
// All relevant subdirectories containing components, pages, or logic
|
||||||
|
"./{components,pages,services,utils}/**/*.{js,ts,jsx,tsx}",
|
||||||
],
|
],
|
||||||
// ... rest of your config
|
};
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user