Browse Source

chore: frontend formatting

Timothy J. Baek 1 year ago
parent
commit
43832d165f
1 changed files with 5 additions and 7 deletions
  1. 5 7
      svelte.config.js

+ 5 - 7
svelte.config.js

@@ -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;