We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47f4548 commit 77e1677Copy full SHA for 77e1677
packages/fullstack/src/plugins/html.ts
@@ -108,6 +108,7 @@ export function serverTransformIndexHtmlPlugin(): Plugin[] {
108
async handler(_options, bundle) {
109
if (this.environment.name === "ssr") {
110
const placeholder = bundle["__transform_placeholder.html"];
111
+ if (!placeholder) return;
112
delete bundle["__transform_placeholder.html"];
113
assert(placeholder?.type === "asset");
114
assert(typeof placeholder.source === "string");
0 commit comments