mirror of
https://github.com/KarolChang/jm-expense-vue-ts.git
synced 2024-12-26 03:38:35 +00:00
15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
{
|
||
|
postcssPlugin: 'internal:charset-removal',
|
||
|
AtRule: {
|
||
|
charset: (atRule) => {
|
||
|
if (atRule.name === 'charset') {
|
||
|
atRule.remove()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|