[ci] format
This commit is contained in:
parent
0209d6276c
commit
eb4382a251
1 changed files with 3 additions and 1 deletions
|
@ -108,7 +108,9 @@ export class App {
|
|||
throw new Error(`Unable to resolve [${specifier}]`);
|
||||
}
|
||||
const bundlePath = manifest.entryModules[specifier];
|
||||
return bundlePath.startsWith('data:') ? bundlePath : prependForwardSlash(joinPaths(manifest.base, bundlePath));
|
||||
return bundlePath.startsWith('data:')
|
||||
? bundlePath
|
||||
: prependForwardSlash(joinPaths(manifest.base, bundlePath));
|
||||
},
|
||||
route: routeData,
|
||||
routeCache: this.#routeCache,
|
||||
|
|
Loading…
Reference in a new issue