mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
6ae332e769
Autoprefixer will automatically add vendor prefixes to css on build
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
parser: "postcss-scss",
|
|
plugins: [require("autoprefixer")],
|
|
};
|
|
|
|
module.exports = config;
|