We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bebb87b commit a33ebb0Copy full SHA for a33ebb0
playground/tailwind/tailwind.config.js
@@ -1,6 +1,11 @@
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
-module.exports = {
7
+/** @type {import('tailwindcss').Config} */
8
+export default {
9
content: [__dirname + '/**/*.vue'],
10
theme: {
11
extend: {},
0 commit comments