jm-expense-vue-ts/postcss.config.js

15 lines
247 B
JavaScript
Raw Permalink Normal View History

2022-04-24 02:08:45 +00:00
module.exports = {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove()
}
}
}
}
]
}