api9nin / postcss.config.mjs
github-actions[bot]
deploy from github actions 2026-06-18
c8ae75d
Raw
History Blame Contribute Delete
240 Bytes
import path from "node:path";
import { fileURLToPath } from "node:url";
const projectRoot = path.dirname(fileURLToPath(import.meta.url));
export default {
plugins: {
"@tailwindcss/postcss": {
base: projectRoot,
},
},
};