vite/playground/tailwind-sourcemap/postcss.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
268 B
JavaScript
Raw Normal View History

import { fileURLToPath } from 'node:url'
import { dirname } from 'node:path'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
export default {
plugins: {
tailwindcss: { config: __dirname + '/tailwind.config.js' },
},
}