Skip to content

Commit

Permalink
fix(node): Fix http import to not be type-only (withastro#6650)
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh authored Mar 24, 2023
1 parent 8a72117 commit a0b6aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/astro/src/core/app/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit a0b6aac

Please sign in to comment.