mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.superproductivity.superproductivity',
|
|
appName: 'super-productivity',
|
|
webDir: 'dist/browser',
|
|
};
|
|
|
|
export default config;
|