@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
16 lines (15 loc) • 445 B
text/typescript
import { Config } from "../../../types/config.mjs";
//#region src/libs/cli/services/get-build-paths.d.ts
/**
* Resolve all the required paths for the Vite build
*/
declare const getBuildPaths: (config: Config, cwd?: string) => {
spaInput: string;
spaOutput: string;
spaDistHtml: string;
spaPluginsOutput: string;
publicDist: string;
};
//#endregion
export { getBuildPaths as default };
//# sourceMappingURL=get-build-paths.d.mts.map