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' fallback: 'index.html'
}) })
}, },
onwarn: (warning, handler) => { onwarn: (warning, handler) => {
const { code, _ } = warning; const { code, _ } = warning;
if (code === "css-unused-selector") if (code === 'css-unused-selector') return;
return;
handler(warning);
},
handler(warning);
}
}; };
export default config; export default config;