Skip to content

Commit 901c21f

Browse files
authored
test: make tailwind test more stable (#12732)
1 parent 8b1cecd commit 901c21f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import path from 'node:path';
2+
import {fileURLToPath} from "node:url";
23

34
/** @type {import('tailwindcss').Config} */
45
export default {
5-
content: [path.join(__dirname, 'src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}')],
6+
content: [path.join(path.dirname(fileURLToPath(import.meta.url)), 'src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}')],
67
};

0 commit comments

Comments
 (0)