Files
clients/apps/web/postcss.config.js

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

14 lines
407 B
JavaScript
Raw Permalink Normal View History

/* eslint-disable @typescript-eslint/no-require-imports */
2025-10-13 06:31:17 -04:00
const path = require("path");
2022-03-08 18:18:03 +01:00
module.exports = {
plugins: [
2025-10-13 06:31:17 -04:00
require("postcss-import")({
path: [path.resolve(__dirname, "../../libs"), path.resolve(__dirname, "src/scss")],
}),
require("postcss-nested"),
2025-10-13 06:31:17 -04:00
require("tailwindcss")({ config: path.resolve(__dirname, "tailwind.config.js") }),
require("autoprefixer"),
],
2022-03-08 18:18:03 +01:00
};