UNPKG

@wroud/vite-plugin-ssg

Version:

A Vite plugin for static site generation (SSG) with React. Renders React applications to static HTML for faster load times and improved SEO.

8 lines 250 B
import nodePath from "node:path"; export function mapBaseToUrl(url, config) { if (config.base === "./" || config.base === "") { return url; } return nodePath.posix.join(config.base, url); } //# sourceMappingURL=mapBaseToUrl.js.map