diff options
author | 2025-02-12 10:35:26 +0000 | |
---|---|---|
committer | 2025-02-12 10:35:26 +0000 | |
commit | 9b65e1b359bd7c1bc6eb1d80830d6643a449d801 (patch) | |
tree | 09eeb33168411961aaf26f1bc2f1378fd0c64908 /packages/integrations/node/src | |
parent | 23094a1f48d0dfb12c5866a3713f52106ef927dd (diff) | |
download | astro-9b65e1b359bd7c1bc6eb1d80830d6643a449d801.tar.gz astro-9b65e1b359bd7c1bc6eb1d80830d6643a449d801.tar.zst astro-9b65e1b359bd7c1bc6eb1d80830d6643a449d801.zip |
[ci] format
Diffstat (limited to 'packages/integrations/node/src')
-rw-r--r-- | packages/integrations/node/src/serve-static.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/integrations/node/src/serve-static.ts b/packages/integrations/node/src/serve-static.ts index 3b1b1e9a7..f26a2ff1f 100644 --- a/packages/integrations/node/src/serve-static.ts +++ b/packages/integrations/node/src/serve-static.ts @@ -2,11 +2,10 @@ import fs from 'node:fs'; import type { IncomingMessage, ServerResponse } from 'node:http'; import path from 'node:path'; import url from 'node:url'; +import { hasFileExtension } from '@astrojs/internal-helpers/path'; import type { NodeApp } from 'astro/app/node'; import send from 'send'; import type { Options } from './types.js'; -import { hasFileExtension } from '@astrojs/internal-helpers/path'; - /** * Creates a Node.js http listener for static files and prerendered pages. |