We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e86ae commit fd4392eCopy full SHA for fd4392e
playground/backend-integration/tailwind.config.js
@@ -1,5 +1,10 @@
1
-/** @type {import('tailwindcss').Config} */
+import { fileURLToPath } from 'node:url'
2
+import { dirname } from 'node:path'
3
+
4
+const __filename = fileURLToPath(import.meta.url)
5
+const __dirname = dirname(__filename)
6
7
+/** @type {import('tailwindcss').Config} */
8
export default {
9
content: [__dirname + '/frontend/**/*.{css,html,ts,js}'],
10
theme: {
0 commit comments