mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 04:21:55 +00:00
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
// @ts-nocheck
|
|
const csso = require("postcss-csso");
|
|
|
|
module.exports = {
|
|
// Restructure false, otherwise FFG site breaks
|
|
plugins: [require("autoprefixer"), csso({ restructure: false })],
|
|
};
|