Stirling-PDF/frontend/postcss.config.mjs

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

10 lines
157 B
JavaScript
Raw Normal View History

2025-09-03 09:15:10 +01:00
import postcss from '@tailwindcss/postcss';
import autoprefixer from 'autoprefixer';
2025-05-13 23:32:54 +01:00
module.exports = {
2025-05-28 21:43:02 +01:00
plugins: [
2025-09-03 09:15:10 +01:00
postcss,
autoprefixer,
2025-05-28 21:43:02 +01:00
],
};