monkeytype/frontend/postcss.config.js
Miodec 6ae332e769 build: add postcss and autoprefixer
Autoprefixer will automatically add vendor prefixes to css on build
2023-08-12 14:59:11 +02:00

8 lines
162 B
JavaScript

/** @type {import('postcss-load-config').Config} */
const config = {
parser: "postcss-scss",
plugins: [require("autoprefixer")],
};
module.exports = config;