mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
fix(node): Fix http import to not be type-only (#6650)
This commit is contained in:
parent
8a721173b3
commit
a0b6aac2f3
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import type { RouteData } from '../../@types/astro';
|
|||
import type { SerializedSSRManifest, SSRManifest } from './types';
|
||||
|
||||
import * as fs from 'fs';
|
||||
import type { IncomingMessage } from 'http';
|
||||
import { IncomingMessage } from 'http';
|
||||
import { TLSSocket } from 'tls';
|
||||
import { deserializeManifest } from './common.js';
|
||||
import { App, type MatchOptions } from './index.js';
|
||||
|
|
Loading…
Reference in a new issue