You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
853 B
26 lines
853 B
/**
|
|
* @file Dynamic Main Entry Point
|
|
* @author Matthew Raymer
|
|
*
|
|
* This file dynamically loads the appropriate platform-specific main entry point
|
|
* based on the current environment and build configuration.
|
|
*/
|
|
|
|
import { logger } from "./utils/logger";
|
|
|
|
// Check the platform from environment variables
|
|
const platform = process.env.VITE_PLATFORM || "web";
|
|
|
|
logger.info(`[Main] 🚀 Loading TimeSafari for platform: ${platform}`);
|
|
|
|
// Dynamically import the appropriate main entry point
|
|
if (platform === "capacitor") {
|
|
logger.info(`[Main] 📱 Loading Capacitor-specific entry point`);
|
|
import("./main.capacitor");
|
|
} else if (platform === "electron") {
|
|
logger.info(`[Main] 💻 Loading Electron-specific entry point`);
|
|
import("./main.electron");
|
|
} else {
|
|
logger.info(`[Main] 🌐 Loading Web-specific entry point`);
|
|
import("./main.web");
|
|
}
|
|
|