Files
Stirling-PDF/frontend/editor/postcss.config.js
T
James Brunton 17aa71850c Convert to consistently use JS modules (#6854)
# Description of Changes
Modernises the codebase and gets rid of warnings where Node complains
that it doesn't know what type of JS it's supposed to be reading on
`.js` files. We might as well update everything to just use correct JS
syntax instead of keeping with some files having Node-specific imports.
2026-07-07 11:11:24 +00:00

7 lines
164 B
JavaScript

import tailwindcssPostcss from "@tailwindcss/postcss";
import autoprefixer from "autoprefixer";
export default {
plugins: [tailwindcssPostcss, autoprefixer],
};