[ci] format
This commit is contained in:
parent
cd154e447b
commit
b680c3eb97
3 changed files with 60 additions and 48 deletions
|
@ -244,7 +244,13 @@ function addPageName(pathname: string, opts: StaticBuildOptions): void {
|
|||
opts.pageNames.push(pathname.replace(/^\//, ''));
|
||||
}
|
||||
|
||||
function getUrlForPath(pathname: string, base: string, origin: string, format: 'directory' | 'file', routeType: RouteType): URL {
|
||||
function getUrlForPath(
|
||||
pathname: string,
|
||||
base: string,
|
||||
origin: string,
|
||||
format: 'directory' | 'file',
|
||||
routeType: RouteType
|
||||
): URL {
|
||||
/**
|
||||
* Examples:
|
||||
* pathname: /, /foo
|
||||
|
@ -258,7 +264,8 @@ function getUrlForPath(pathname: string, base: string, origin: string, format: '
|
|||
const buildPathRelative = removeLeadingForwardSlash(pathname);
|
||||
buildPathname = base + buildPathRelative;
|
||||
} else {
|
||||
const buildPathRelative = removeTrailingForwardSlash(removeLeadingForwardSlash(pathname)) + ending;
|
||||
const buildPathRelative =
|
||||
removeTrailingForwardSlash(removeLeadingForwardSlash(pathname)) + ending;
|
||||
buildPathname = base + buildPathRelative;
|
||||
}
|
||||
const url = new URL(buildPathname, origin);
|
||||
|
@ -312,8 +319,13 @@ async function generatePath(
|
|||
}
|
||||
|
||||
const ssr = opts.astroConfig.output === 'server';
|
||||
const url = getUrlForPath(pathname, opts.astroConfig.base, origin,
|
||||
opts.astroConfig.build.format, pageData.route.type);
|
||||
const url = getUrlForPath(
|
||||
pathname,
|
||||
opts.astroConfig.base,
|
||||
origin,
|
||||
opts.astroConfig.build.format,
|
||||
pageData.route.type
|
||||
);
|
||||
const options: RenderOptions = {
|
||||
adapterName: undefined,
|
||||
links,
|
||||
|
|
Loading…
Reference in a new issue