Compress Loading Screen's CSS

This commit is contained in:
redphx
2024-08-31 19:02:36 +07:00
parent 26b28564cc
commit 5ba4a669e6
2 changed files with 15 additions and 15 deletions

View File

@@ -14,6 +14,6 @@ export const renderStylus = async () => {
};
export const compressCss = async (css: string) => {
return await (stylus(css, {}).set('compress', true)).render();
export const compressCss = (css: string) => {
return (stylus(css, {}).set('compress', true)).render();
};