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