- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
6 lines
258 B
TypeScript
6 lines
258 B
TypeScript
export interface CapacitorPreferencesOptions {
|
|
base?: string;
|
|
}
|
|
declare const _default: (opts: CapacitorPreferencesOptions) => import("..").Driver<CapacitorPreferencesOptions, import("@capacitor/preferences").PreferencesPlugin>;
|
|
export default _default;
|