We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0890f74 commit 7cc72acCopy full SHA for 7cc72ac
internal/web/tailwind.css
@@ -1,5 +1,2 @@
1
/* This file is an entrypoint for the TailwindCSS compiler */
2
-
3
-@tailwind base;
4
-@tailwind components;
5
-@tailwind utilities;
+@import "tailwindcss";
postcss.config.js renamed to postcss.config.mjs
@@ -1,7 +1,7 @@
-module.exports = {
+export default {
plugins: {
autoprefixer: {},
cssnano: {},
- "@tailwindcss/postcss": {}
+ "@tailwindcss/postcss": {},
6
}
7
-};
+}
0 commit comments