summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ematipico <ematipico@users.noreply.github.com> 2023-07-14 15:00:51 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-07-14 15:00:51 +0000
commit6d6e0a80cd4f3e88271a4d3d38fab3e9f38d93b2 (patch)
tree8d9a32b8190e32780bbdf0bce3302ea4dc35cd66
parent1568cb43244698bed10a436153443a9073d7b45f (diff)
downloadastro-6d6e0a80cd4f3e88271a4d3d38fab3e9f38d93b2.tar.gz
astro-6d6e0a80cd4f3e88271a4d3d38fab3e9f38d93b2.tar.zst
astro-6d6e0a80cd4f3e88271a4d3d38fab3e9f38d93b2.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/src/vite-plugin-astro-server/plugin.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/astro/src/vite-plugin-astro-server/plugin.ts b/packages/astro/src/vite-plugin-astro-server/plugin.ts
index 65c565678..ffae6e05b 100644
--- a/packages/astro/src/vite-plugin-astro-server/plugin.ts
+++ b/packages/astro/src/vite-plugin-astro-server/plugin.ts
@@ -1,6 +1,6 @@
-import type * as vite from 'vite';
-import type { AstroSettings, ManifestData } from '../@types/astro';
import type fs from 'fs';
+import type * as vite from 'vite';
+import type { AstroSettings, ManifestData, SSRManifest } from '../@types/astro';
import { patchOverlay } from '../core/errors/overlay.js';
import type { LogOptions } from '../core/logger/core.js';
import { createViteLoader } from '../core/module-loader/index.js';
@@ -9,7 +9,6 @@ import { createRouteManifest } from '../core/routing/index.js';
import { baseMiddleware } from './base.js';
import { createController } from './controller.js';
import { handleRequest } from './request.js';
-import type { SSRManifest } from '../@types/astro';
export interface AstroPluginOptions {
settings: AstroSettings;