summaryrefslogtreecommitdiff
path: root/packages/integrations/tailwind/test/fixtures/basic/tailwind.config.js
blob: 278abf14d6a169f79647dd0538013512be453d60 (plain) (blame)
1
2
3
4
5
6
7
import path from 'node:path';
import {fileURLToPath} from "node:url";

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