astro 2.5.4 → 2.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@types/astro.d.ts +3 -8
- package/dist/assets/services/service.js +6 -0
- package/dist/assets/utils/emitAsset.d.ts +1 -3
- package/dist/assets/utils/emitAsset.js +4 -15
- package/dist/assets/vite-plugin-assets.js +5 -5
- package/dist/content/consts.d.ts +1 -2
- package/dist/content/consts.js +1 -8
- package/dist/content/runtime-assets.d.ts +1 -2
- package/dist/content/runtime-assets.js +2 -3
- package/dist/content/runtime.js +47 -63
- package/dist/content/types-generator.js +9 -5
- package/dist/content/utils.d.ts +2 -2
- package/dist/content/utils.js +4 -4
- package/dist/content/vite-plugin-content-assets.js +10 -26
- package/dist/content/vite-plugin-content-imports.js +113 -150
- package/dist/content/vite-plugin-content-virtual-mod.d.ts +3 -3
- package/dist/content/vite-plugin-content-virtual-mod.js +7 -3
- package/dist/core/app/index.d.ts +0 -2
- package/dist/core/app/index.js +5 -7
- package/dist/core/app/types.d.ts +3 -2
- package/dist/core/build/generate.js +16 -11
- package/dist/core/build/graph.js +3 -2
- package/dist/core/build/internal.d.ts +8 -4
- package/dist/core/build/internal.js +19 -1
- package/dist/core/build/plugins/plugin-css.js +9 -14
- package/dist/core/build/plugins/plugin-middleware.d.ts +0 -1
- package/dist/core/build/plugins/plugin-middleware.js +3 -16
- package/dist/core/build/plugins/plugin-pages.d.ts +10 -0
- package/dist/core/build/plugins/plugin-pages.js +40 -24
- package/dist/core/build/plugins/plugin-ssr.d.ts +2 -2
- package/dist/core/build/plugins/plugin-ssr.js +46 -20
- package/dist/core/build/static-build.js +18 -5
- package/dist/core/build/types.d.ts +2 -2
- package/dist/core/config/schema.d.ts +170 -170
- package/dist/core/constants.js +1 -1
- package/dist/core/dev/dev.js +1 -1
- package/dist/core/errors/errors-data.d.ts +57 -8
- package/dist/core/errors/errors-data.js +57 -12
- package/dist/core/messages.js +2 -2
- package/dist/core/render/dev/index.js +1 -2
- package/dist/core/render/dev/vite.js +12 -7
- package/dist/core/render/result.js +5 -4
- package/dist/prerender/routing.d.ts +13 -0
- package/dist/prerender/routing.js +49 -0
- package/dist/runtime/server/astro-global.js +11 -1
- package/dist/runtime/server/index.d.ts +1 -1
- package/dist/runtime/server/index.js +9 -1
- package/dist/runtime/server/render/astro/instance.js +3 -0
- package/dist/runtime/server/render/slot.d.ts +1 -1
- package/dist/runtime/server/scripts.js +1 -1
- package/dist/vite-plugin-astro-server/route.js +3 -11
- package/dist/vite-plugin-head/index.js +1 -1
- package/dist/vite-plugin-markdown/content-entry-type.js +1 -6
- package/package.json +4 -4
- package/src/content/template/virtual-mod.mjs +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { MIDDLEWARE_PATH_SEGMENT_NAME } from "../../constants.js";
|
|
2
2
|
import { addRollupInput } from "../add-rollup-input.js";
|
|
3
3
|
const MIDDLEWARE_MODULE_ID = "@astro-middleware";
|
|
4
|
-
const RESOLVED_MIDDLEWARE_MODULE_ID = "\0@astro-middleware";
|
|
5
|
-
let inputs = /* @__PURE__ */ new Set();
|
|
6
4
|
function vitePluginMiddleware(opts, _internals) {
|
|
7
5
|
return {
|
|
8
6
|
name: "@astro/plugin-middleware",
|
|
@@ -11,24 +9,14 @@ function vitePluginMiddleware(opts, _internals) {
|
|
|
11
9
|
return addRollupInput(options, [MIDDLEWARE_MODULE_ID]);
|
|
12
10
|
}
|
|
13
11
|
},
|
|
14
|
-
resolveId(id) {
|
|
12
|
+
async resolveId(id) {
|
|
15
13
|
if (id === MIDDLEWARE_MODULE_ID && opts.settings.config.experimental.middleware) {
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
async load(id) {
|
|
20
|
-
if (id === RESOLVED_MIDDLEWARE_MODULE_ID && opts.settings.config.experimental.middleware) {
|
|
21
|
-
const imports = [];
|
|
22
|
-
const exports = [];
|
|
23
|
-
let middlewareId = await this.resolve(
|
|
14
|
+
const middlewareId = await this.resolve(
|
|
24
15
|
`${opts.settings.config.srcDir.pathname}/${MIDDLEWARE_PATH_SEGMENT_NAME}`
|
|
25
16
|
);
|
|
26
17
|
if (middlewareId) {
|
|
27
|
-
|
|
28
|
-
exports.push(`export { onRequest }`);
|
|
18
|
+
return middlewareId.id;
|
|
29
19
|
}
|
|
30
|
-
const result = [imports.join("\n"), exports.join("\n")];
|
|
31
|
-
return result.join("\n");
|
|
32
20
|
}
|
|
33
21
|
}
|
|
34
22
|
};
|
|
@@ -47,7 +35,6 @@ function pluginMiddleware(opts, internals) {
|
|
|
47
35
|
}
|
|
48
36
|
export {
|
|
49
37
|
MIDDLEWARE_MODULE_ID,
|
|
50
|
-
RESOLVED_MIDDLEWARE_MODULE_ID,
|
|
51
38
|
pluginMiddleware,
|
|
52
39
|
vitePluginMiddleware
|
|
53
40
|
};
|
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import { type BuildInternals } from '../internal.js';
|
|
2
2
|
import type { AstroBuildPlugin } from '../plugin';
|
|
3
3
|
import type { StaticBuildOptions } from '../types';
|
|
4
|
+
export declare const ASTRO_PAGE_MODULE_ID = "@astro-page:";
|
|
5
|
+
export declare const ASTRO_PAGE_RESOLVED_MODULE_ID = "\0@astro-page:";
|
|
6
|
+
export declare const ASTRO_PAGE_EXTENSION_POST_PATTERN = "@_@";
|
|
7
|
+
/**
|
|
8
|
+
* 1. We add a fixed prefix, which is used as virtual module naming convention;
|
|
9
|
+
* 2. We replace the dot that belongs extension with an arbitrary string.
|
|
10
|
+
*
|
|
11
|
+
* @param path
|
|
12
|
+
*/
|
|
13
|
+
export declare function getVirtualModulePageNameFromPath(path: string): string;
|
|
4
14
|
export declare function pluginPages(opts: StaticBuildOptions, internals: BuildInternals): AstroBuildPlugin;
|
|
@@ -1,44 +1,56 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { extname } from "node:path";
|
|
2
2
|
import { addRollupInput } from "../add-rollup-input.js";
|
|
3
|
-
import { eachPageData } from "../internal.js";
|
|
4
3
|
import { MIDDLEWARE_MODULE_ID } from "./plugin-middleware.js";
|
|
5
4
|
import { RENDERERS_MODULE_ID } from "./plugin-renderers.js";
|
|
5
|
+
const ASTRO_PAGE_MODULE_ID = "@astro-page:";
|
|
6
|
+
const ASTRO_PAGE_RESOLVED_MODULE_ID = "\0@astro-page:";
|
|
7
|
+
const ASTRO_PAGE_EXTENSION_POST_PATTERN = "@_@";
|
|
8
|
+
function getVirtualModulePageNameFromPath(path) {
|
|
9
|
+
const extension = extname(path);
|
|
10
|
+
return `${ASTRO_PAGE_MODULE_ID}${path.replace(
|
|
11
|
+
extension,
|
|
12
|
+
extension.replace(".", ASTRO_PAGE_EXTENSION_POST_PATTERN)
|
|
13
|
+
)}`;
|
|
14
|
+
}
|
|
6
15
|
function vitePluginPages(opts, internals) {
|
|
7
16
|
return {
|
|
8
17
|
name: "@astro/plugin-build-pages",
|
|
9
18
|
options(options) {
|
|
10
19
|
if (opts.settings.config.output === "static") {
|
|
11
|
-
|
|
20
|
+
const inputs = /* @__PURE__ */ new Set();
|
|
21
|
+
for (const path of Object.keys(opts.allPages)) {
|
|
22
|
+
inputs.add(getVirtualModulePageNameFromPath(path));
|
|
23
|
+
}
|
|
24
|
+
return addRollupInput(options, Array.from(inputs));
|
|
12
25
|
}
|
|
13
26
|
},
|
|
14
27
|
resolveId(id) {
|
|
15
|
-
if (id
|
|
16
|
-
return
|
|
28
|
+
if (id.startsWith(ASTRO_PAGE_MODULE_ID)) {
|
|
29
|
+
return "\0" + id;
|
|
17
30
|
}
|
|
18
31
|
},
|
|
19
32
|
async load(id) {
|
|
20
|
-
if (id
|
|
21
|
-
let importMap = "";
|
|
33
|
+
if (id.startsWith(ASTRO_PAGE_RESOLVED_MODULE_ID)) {
|
|
22
34
|
const imports = [];
|
|
23
35
|
const exports = [];
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
`const
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
const pageName = id.slice(ASTRO_PAGE_RESOLVED_MODULE_ID.length);
|
|
37
|
+
const pageData = internals.pagesByComponent.get(
|
|
38
|
+
`${pageName.replace(ASTRO_PAGE_EXTENSION_POST_PATTERN, ".")}`
|
|
39
|
+
);
|
|
40
|
+
if (pageData) {
|
|
41
|
+
const resolvedPage = await this.resolve(pageData.moduleSpecifier);
|
|
42
|
+
if (resolvedPage) {
|
|
43
|
+
imports.push(`const page = () => import(${JSON.stringify(pageData.moduleSpecifier)});`);
|
|
44
|
+
exports.push(`export { page }`);
|
|
45
|
+
imports.push(`import { renderers } from "${RENDERERS_MODULE_ID}";`);
|
|
46
|
+
exports.push(`export { renderers };`);
|
|
47
|
+
if (opts.settings.config.experimental.middleware) {
|
|
48
|
+
imports.push(`import * as _middleware from "${MIDDLEWARE_MODULE_ID}";`);
|
|
49
|
+
exports.push(`export const middleware = _middleware;`);
|
|
50
|
+
}
|
|
51
|
+
return `${imports.join("\n")}${exports.join("\n")}`;
|
|
52
|
+
}
|
|
39
53
|
}
|
|
40
|
-
content.push(`export const pageMap = new Map([${importMap}]);`);
|
|
41
|
-
return `${imports.join("\n")}${content.join("\n")}${exports.join("\n")}`;
|
|
42
54
|
}
|
|
43
55
|
}
|
|
44
56
|
};
|
|
@@ -56,5 +68,9 @@ function pluginPages(opts, internals) {
|
|
|
56
68
|
};
|
|
57
69
|
}
|
|
58
70
|
export {
|
|
71
|
+
ASTRO_PAGE_EXTENSION_POST_PATTERN,
|
|
72
|
+
ASTRO_PAGE_MODULE_ID,
|
|
73
|
+
ASTRO_PAGE_RESOLVED_MODULE_ID,
|
|
74
|
+
getVirtualModulePageNameFromPath,
|
|
59
75
|
pluginPages
|
|
60
76
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { StaticBuildOptions } from '../types';
|
|
2
1
|
import { type BuildInternals } from '../internal.js';
|
|
3
2
|
import type { AstroBuildPlugin } from '../plugin';
|
|
4
|
-
|
|
3
|
+
import type { StaticBuildOptions } from '../types';
|
|
4
|
+
export declare const SSR_VIRTUAL_MODULE_ID = "@astrojs-ssr-virtual-entry";
|
|
5
5
|
export declare function injectManifest(buildOpts: StaticBuildOptions, internals: BuildInternals): Promise<string>;
|
|
6
6
|
export declare function pluginSSR(options: StaticBuildOptions, internals: BuildInternals): AstroBuildPlugin;
|
|
@@ -3,49 +3,74 @@ import { fileURLToPath } from "url";
|
|
|
3
3
|
import { runHookBuildSsr } from "../../../integrations/index.js";
|
|
4
4
|
import { isHybridOutput } from "../../../prerender/utils.js";
|
|
5
5
|
import { BEFORE_HYDRATION_SCRIPT_ID, PAGE_SCRIPT_ID } from "../../../vite-plugin-scripts/index.js";
|
|
6
|
-
import { pagesVirtualModuleId } from "../../app/index.js";
|
|
7
6
|
import { joinPaths, prependForwardSlash } from "../../path.js";
|
|
8
7
|
import { serializeRouteData } from "../../routing/index.js";
|
|
9
8
|
import { addRollupInput } from "../add-rollup-input.js";
|
|
10
9
|
import { getOutFile, getOutFolder } from "../common.js";
|
|
11
10
|
import { cssOrder, mergeInlineCss } from "../internal.js";
|
|
11
|
+
import { MIDDLEWARE_MODULE_ID } from "./plugin-middleware.js";
|
|
12
|
+
import { getVirtualModulePageNameFromPath } from "./plugin-pages.js";
|
|
12
13
|
import { RENDERERS_MODULE_ID } from "./plugin-renderers.js";
|
|
13
|
-
const
|
|
14
|
-
const
|
|
14
|
+
const SSR_VIRTUAL_MODULE_ID = "@astrojs-ssr-virtual-entry";
|
|
15
|
+
const RESOLVED_SSR_VIRTUAL_MODULE_ID = "\0" + SSR_VIRTUAL_MODULE_ID;
|
|
15
16
|
const manifestReplace = "@@ASTRO_MANIFEST_REPLACE@@";
|
|
16
17
|
const replaceExp = new RegExp(`['"](${manifestReplace})['"]`, "g");
|
|
17
|
-
function vitePluginSSR(internals, adapter,
|
|
18
|
+
function vitePluginSSR(internals, adapter, options) {
|
|
18
19
|
return {
|
|
19
20
|
name: "@astrojs/vite-plugin-astro-ssr",
|
|
20
21
|
enforce: "post",
|
|
21
22
|
options(opts) {
|
|
22
|
-
return addRollupInput(opts, [
|
|
23
|
+
return addRollupInput(opts, [SSR_VIRTUAL_MODULE_ID]);
|
|
23
24
|
},
|
|
24
25
|
resolveId(id) {
|
|
25
|
-
if (id ===
|
|
26
|
-
return
|
|
26
|
+
if (id === SSR_VIRTUAL_MODULE_ID) {
|
|
27
|
+
return RESOLVED_SSR_VIRTUAL_MODULE_ID;
|
|
27
28
|
}
|
|
28
29
|
},
|
|
29
|
-
load(id) {
|
|
30
|
+
async load(id) {
|
|
30
31
|
var _a;
|
|
31
|
-
if (id ===
|
|
32
|
-
|
|
32
|
+
if (id === RESOLVED_SSR_VIRTUAL_MODULE_ID) {
|
|
33
|
+
const {
|
|
34
|
+
settings: { config },
|
|
35
|
+
allPages
|
|
36
|
+
} = options;
|
|
37
|
+
const imports = [];
|
|
38
|
+
const contents = [];
|
|
39
|
+
const exports = [];
|
|
40
|
+
let middleware;
|
|
33
41
|
if (((_a = config.experimental) == null ? void 0 : _a.middleware) === true) {
|
|
34
|
-
|
|
42
|
+
imports.push(`import * as _middleware from "${MIDDLEWARE_MODULE_ID}"`);
|
|
43
|
+
middleware = "middleware: _middleware";
|
|
35
44
|
}
|
|
36
|
-
|
|
45
|
+
let i = 0;
|
|
46
|
+
const pageMap = [];
|
|
47
|
+
for (const path of Object.keys(allPages)) {
|
|
48
|
+
const virtualModuleName = getVirtualModulePageNameFromPath(path);
|
|
49
|
+
let module = await this.resolve(virtualModuleName);
|
|
50
|
+
if (module) {
|
|
51
|
+
const variable = `_page${i}`;
|
|
52
|
+
imports.push(`const ${variable} = () => import("${virtualModuleName}");`);
|
|
53
|
+
const pageData = internals.pagesByComponent.get(path);
|
|
54
|
+
if (pageData) {
|
|
55
|
+
pageMap.push(`[${JSON.stringify(pageData.component)}, ${variable}]`);
|
|
56
|
+
}
|
|
57
|
+
i++;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
contents.push(`const pageMap = new Map([${pageMap.join(",")}]);`);
|
|
61
|
+
exports.push(`export { pageMap }`);
|
|
62
|
+
const content = `import * as adapter from '${adapter.serverEntrypoint}';
|
|
37
63
|
import { renderers } from '${RENDERERS_MODULE_ID}';
|
|
38
|
-
import * as _main from '${pagesVirtualModuleId}';
|
|
39
64
|
import { deserializeManifest as _deserializeManifest } from 'astro/app';
|
|
40
65
|
import { _privateSetManifestDontUseThis } from 'astro:ssr-manifest';
|
|
41
66
|
const _manifest = Object.assign(_deserializeManifest('${manifestReplace}'), {
|
|
42
|
-
pageMap
|
|
43
|
-
renderers
|
|
67
|
+
pageMap,
|
|
68
|
+
renderers,
|
|
44
69
|
${middleware}
|
|
45
70
|
});
|
|
46
71
|
_privateSetManifestDontUseThis(_manifest);
|
|
47
72
|
const _args = ${adapter.args ? JSON.stringify(adapter.args) : "undefined"};
|
|
48
|
-
|
|
73
|
+
|
|
49
74
|
${adapter.exports ? `const _exports = adapter.createExports(_manifest, _args);
|
|
50
75
|
${adapter.exports.map((name) => {
|
|
51
76
|
if (name === "default") {
|
|
@@ -60,6 +85,7 @@ const _start = 'start';
|
|
|
60
85
|
if(_start in adapter) {
|
|
61
86
|
adapter[_start](_manifest, _args);
|
|
62
87
|
}`;
|
|
88
|
+
return `${imports.join("\n")}${contents.join("\n")}${content}${exports.join("\n")}`;
|
|
63
89
|
}
|
|
64
90
|
return void 0;
|
|
65
91
|
},
|
|
@@ -73,7 +99,7 @@ if(_start in adapter) {
|
|
|
73
99
|
if (chunk.type === "asset") {
|
|
74
100
|
continue;
|
|
75
101
|
}
|
|
76
|
-
if (chunk.modules[
|
|
102
|
+
if (chunk.modules[RESOLVED_SSR_VIRTUAL_MODULE_ID]) {
|
|
77
103
|
internals.ssrEntryChunk = chunk;
|
|
78
104
|
delete bundle[chunkName];
|
|
79
105
|
}
|
|
@@ -196,7 +222,7 @@ function pluginSSR(options, internals) {
|
|
|
196
222
|
build: "ssr",
|
|
197
223
|
hooks: {
|
|
198
224
|
"build:before": () => {
|
|
199
|
-
let vitePlugin = ssr ? vitePluginSSR(internals, options.settings.adapter, options
|
|
225
|
+
let vitePlugin = ssr ? vitePluginSSR(internals, options.settings.adapter, options) : void 0;
|
|
200
226
|
return {
|
|
201
227
|
enforce: "after-user-plugins",
|
|
202
228
|
vitePlugin
|
|
@@ -217,7 +243,7 @@ function pluginSSR(options, internals) {
|
|
|
217
243
|
};
|
|
218
244
|
}
|
|
219
245
|
export {
|
|
246
|
+
SSR_VIRTUAL_MODULE_ID,
|
|
220
247
|
injectManifest,
|
|
221
|
-
pluginSSR
|
|
222
|
-
virtualModuleId
|
|
248
|
+
pluginSSR
|
|
223
249
|
};
|
|
@@ -16,7 +16,6 @@ import { isModeServerWithNoAdapter } from "../../core/util.js";
|
|
|
16
16
|
import { runHookBuildSetup } from "../../integrations/index.js";
|
|
17
17
|
import { isHybridOutput } from "../../prerender/utils.js";
|
|
18
18
|
import { PAGE_SCRIPT_ID } from "../../vite-plugin-scripts/index.js";
|
|
19
|
-
import { resolvedPagesVirtualModuleId } from "../app/index.js";
|
|
20
19
|
import { AstroError, AstroErrorData } from "../errors/index.js";
|
|
21
20
|
import { info } from "../logger/core.js";
|
|
22
21
|
import { getOutDirWithinCwd } from "./common.js";
|
|
@@ -24,8 +23,12 @@ import { generatePages } from "./generate.js";
|
|
|
24
23
|
import { trackPageData } from "./internal.js";
|
|
25
24
|
import { createPluginContainer } from "./plugin.js";
|
|
26
25
|
import { registerAllPlugins } from "./plugins/index.js";
|
|
27
|
-
import {
|
|
26
|
+
import {
|
|
27
|
+
ASTRO_PAGE_EXTENSION_POST_PATTERN,
|
|
28
|
+
ASTRO_PAGE_RESOLVED_MODULE_ID
|
|
29
|
+
} from "./plugins/plugin-pages.js";
|
|
28
30
|
import { RESOLVED_RENDERERS_MODULE_ID } from "./plugins/plugin-renderers.js";
|
|
31
|
+
import { SSR_VIRTUAL_MODULE_ID } from "./plugins/plugin-ssr.js";
|
|
29
32
|
import { getTimeStat } from "./util.js";
|
|
30
33
|
async function viteBuild(opts) {
|
|
31
34
|
var _a, _b, _c;
|
|
@@ -129,10 +132,17 @@ async function ssrBuild(opts, internals, input, container) {
|
|
|
129
132
|
assetFileNames: `${settings.config.build.assets}/[name].[hash][extname]`,
|
|
130
133
|
...(_e = (_d = viteConfig.build) == null ? void 0 : _d.rollupOptions) == null ? void 0 : _e.output,
|
|
131
134
|
entryFileNames(chunkInfo) {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
+
var _a2, _b2;
|
|
136
|
+
if ((_a2 = chunkInfo.facadeModuleId) == null ? void 0 : _a2.startsWith(ASTRO_PAGE_RESOLVED_MODULE_ID)) {
|
|
137
|
+
return makeAstroPageEntryPointFileName(chunkInfo.facadeModuleId);
|
|
138
|
+
} else if (
|
|
139
|
+
// checks if the path of the module we have middleware, e.g. middleware.js / middleware/index.js
|
|
140
|
+
((_b2 = chunkInfo.facadeModuleId) == null ? void 0 : _b2.includes("middleware")) && // checks if the file actually export the `onRequest` function
|
|
141
|
+
chunkInfo.exports.includes("onRequest")
|
|
142
|
+
) {
|
|
135
143
|
return "middleware.mjs";
|
|
144
|
+
} else if (chunkInfo.facadeModuleId === SSR_VIRTUAL_MODULE_ID) {
|
|
145
|
+
return opts.settings.config.build.serverEntry;
|
|
136
146
|
} else if (chunkInfo.facadeModuleId === RESOLVED_RENDERERS_MODULE_ID) {
|
|
137
147
|
return "renderers.mjs";
|
|
138
148
|
} else {
|
|
@@ -315,6 +325,9 @@ async function ssrMoveAssets(opts) {
|
|
|
315
325
|
removeEmptyDirs(serverAssets);
|
|
316
326
|
}
|
|
317
327
|
}
|
|
328
|
+
function makeAstroPageEntryPointFileName(facadeModuleId) {
|
|
329
|
+
return `${facadeModuleId.replace(ASTRO_PAGE_RESOLVED_MODULE_ID, "").replace("src/", "").replaceAll("[", "_").replaceAll("]", "_").replace(ASTRO_PAGE_EXTENSION_POST_PATTERN, ".")}.mjs`;
|
|
330
|
+
}
|
|
318
331
|
export {
|
|
319
332
|
staticBuild,
|
|
320
333
|
viteBuild
|
|
@@ -44,8 +44,8 @@ export interface StaticBuildOptions {
|
|
|
44
44
|
teardownCompiler: boolean;
|
|
45
45
|
}
|
|
46
46
|
type ImportComponentInstance = () => Promise<ComponentInstance>;
|
|
47
|
-
export interface
|
|
48
|
-
|
|
47
|
+
export interface SinglePageBuiltModule {
|
|
48
|
+
page: ImportComponentInstance;
|
|
49
49
|
middleware: AstroMiddlewareInstance<unknown>;
|
|
50
50
|
renderers: SSRLoadedRenderer[];
|
|
51
51
|
}
|