0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
bluwy 2023-04-17 06:37:46 +00:00 committed by fredkbot
parent 1f2699461d
commit 1ed52c5849

View file

@ -12,7 +12,7 @@ import { attachToResponse, getSetCookiesFromResponse } from '../cookies/index.js
import { call as callEndpoint } from '../endpoint/index.js'; import { call as callEndpoint } from '../endpoint/index.js';
import { consoleLogDestination } from '../logger/console.js'; import { consoleLogDestination } from '../logger/console.js';
import { error, type LogOptions } from '../logger/core.js'; import { error, type LogOptions } from '../logger/core.js';
import { joinPaths, prependForwardSlash, removeTrailingForwardSlash } from '../path.js'; import { removeTrailingForwardSlash } from '../path.js';
import { import {
createEnvironment, createEnvironment,
createRenderContext, createRenderContext,
@ -72,11 +72,7 @@ export class App {
return bundlePath; return bundlePath;
} }
default: { default: {
return createAssetLink( return createAssetLink(bundlePath, manifest.base, manifest.assetsPrefix);
bundlePath,
manifest.base,
manifest.assetsPrefix
);
} }
} }
}, },