[ci] format
This commit is contained in:
parent
101f032098
commit
4c33576a6c
5 changed files with 3 additions and 7 deletions
|
@ -8,6 +8,6 @@ export default defineConfig({
|
|||
mode: 'standalone',
|
||||
}),
|
||||
experimental: {
|
||||
middleware: true
|
||||
middleware: true,
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import type {
|
||||
ComponentInstance,
|
||||
EndpointHandler,
|
||||
ManifestData,
|
||||
MiddlewareResponseHandler,
|
||||
|
@ -9,6 +8,7 @@ import type {
|
|||
import type { RouteInfo, SSRManifest as Manifest } from './types';
|
||||
|
||||
import mime from 'mime';
|
||||
import type { SinglePageBuiltModule } from '../build/types';
|
||||
import { attachToResponse, getSetCookiesFromResponse } from '../cookies/index.js';
|
||||
import { callEndpoint, createAPIContext } from '../endpoint/index.js';
|
||||
import { consoleLogDestination } from '../logger/console.js';
|
||||
|
@ -29,7 +29,6 @@ import {
|
|||
createStylesheetElementSet,
|
||||
} from '../render/ssr-element.js';
|
||||
import { matchRoute } from '../routing/match.js';
|
||||
import type { SinglePageBuiltModule } from '../build/types';
|
||||
export { deserializeManifest } from './common.js';
|
||||
|
||||
const clientLocalsSymbol = Symbol.for('astro.locals');
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
import type { MarkdownRenderingOptions } from '@astrojs/markdown-remark';
|
||||
import type {
|
||||
AstroMiddlewareInstance,
|
||||
ComponentInstance,
|
||||
RouteData,
|
||||
SerializedRouteData,
|
||||
SSRComponentMetadata,
|
||||
|
|
|
@ -14,7 +14,6 @@ import { getOutFile, getOutFolder } from '../common.js';
|
|||
import { cssOrder, mergeInlineCss, type BuildInternals } from '../internal.js';
|
||||
import type { AstroBuildPlugin } from '../plugin';
|
||||
import type { StaticBuildOptions } from '../types';
|
||||
import { MIDDLEWARE_MODULE_ID } from './plugin-middleware.js';
|
||||
import { getVirtualModulePageNameFromPath } from './plugin-pages.js';
|
||||
import { RENDERERS_MODULE_ID } from './plugin-renderers.js';
|
||||
|
||||
|
|
|
@ -18,4 +18,4 @@ export const RedirectSinglePageBuiltModule: SinglePageBuiltModule = {
|
|||
page: () => Promise.resolve(RedirectComponentInstance),
|
||||
middleware: StaticMiddlewareInstance,
|
||||
renderers: [],
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue