diff options
author | 2022-05-16 15:39:02 +0000 | |
---|---|---|
committer | 2022-05-16 15:39:02 +0000 | |
commit | e8007c3b8fe9328ac5e196a986abb63d4b434210 (patch) | |
tree | d55d72a9b04e0690141bce5b4b019fb6f717c7f6 | |
parent | b1230152ff67ca9c184b24023651f4f8739097b8 (diff) | |
download | astro-e8007c3b8fe9328ac5e196a986abb63d4b434210.tar.gz astro-e8007c3b8fe9328ac5e196a986abb63d4b434210.tar.zst astro-e8007c3b8fe9328ac5e196a986abb63d4b434210.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/render/dev/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/render/dev/index.ts b/packages/astro/src/core/render/dev/index.ts index 56546637d..e71284085 100644 --- a/packages/astro/src/core/render/dev/index.ts +++ b/packages/astro/src/core/render/dev/index.ts @@ -161,7 +161,7 @@ export async function render( scripts, // Resolves specifiers in the inline hydrated scripts, such as "@astrojs/preact/client.js" async resolve(s: string) { - if(s.startsWith('/@fs')) { + if (s.startsWith('/@fs')) { return s; } return '/@id' + prependForwardSlash(s); |