0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

test: make tailwind test more stable (#12732)

This commit is contained in:
Emanuele Stoppa 2024-12-13 14:37:25 +00:00 committed by GitHub
parent 8b1cecd6b4
commit 901c21f4f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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