- SvelteKit 2 (Svelte 5) with TypeScript, static adapter (SPA mode) - Capacitor config for iOS/Android (so.toph.solidhaus) - Tailwind CSS v4 via Vite plugin - All dependencies: idb, nanoid, bwip-js, jspdf, Automerge, Solid - Route stubs: dashboard, scan, items, locations, labels, settings - Type definitions and ID generator utility - Project specification and ontology files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'so.toph.solidhaus',
|
|
appName: 'SolidHaus',
|
|
webDir: 'build',
|
|
server: {
|
|
androidScheme: 'https'
|
|
}
|
|
};
|
|
|
|
export default config;
|