chore: frontend formatting

This commit is contained in:
Timothy J. Baek 2024-03-31 01:59:10 -07:00
parent d630485051
commit 43832d165f

View file

@ -17,14 +17,12 @@ const config = {
fallback: 'index.html'
})
},
onwarn: (warning, handler) => {
const { code, _ } = warning;
if (code === "css-unused-selector")
return;
handler(warning);
},
onwarn: (warning, handler) => {
const { code, _ } = warning;
if (code === 'css-unused-selector') return;
handler(warning);
}
};
export default config;