keycloak-scim/postcss.config.js

7 lines
153 B
JavaScript
Raw Normal View History

2021-09-16 10:24:21 +00:00
const postImport = require("postcss-import");
2022-03-10 09:41:47 +00:00
const postcssSVG = require("postcss-svg");
module.exports = {
2022-03-10 09:41:47 +00:00
plugins: [postImport(), postcssSVG()],
2021-09-16 10:24:21 +00:00
};