From 55d599dd2f91470a67379180735cebad4f922bfc Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 27 Dec 2025 12:24:16 -0600 Subject: [PATCH] format capacitor.config.ts to include trailing comma for consistency --- capacitor.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/capacitor.config.ts b/capacitor.config.ts index 5a2fb07..6e16213 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -1,9 +1,9 @@ import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { - appId: 'com.quad4.webnews', - appName: 'Web News', - webDir: 'build' + appId: 'com.quad4.webnews', + appName: 'Web News', + webDir: 'build', }; export default config;