UNPKG

@tanstack/solid-start

Version:

Modern and scalable routing for Solid applications

14 lines (13 loc) 533 B
import { fileURLToPath } from "node:url"; import path from "pathe"; //#region src/plugin/shared.ts var currentDir = path.dirname(fileURLToPath(import.meta.url)); var defaultEntryDir = path.resolve(currentDir, "..", "..", "plugin", "default-entry"); var solidStartDefaultEntryPaths = { client: path.resolve(defaultEntryDir, "client.tsx"), server: path.resolve(defaultEntryDir, "server.ts"), start: path.resolve(defaultEntryDir, "start.ts") }; //#endregion export { solidStartDefaultEntryPaths }; //# sourceMappingURL=shared.js.map