Dashboard › binpatch › Distillation
1238d37a-d405-409f-9828-712d034e23f5["9e550ca19c38370c496545af63469933","d298eb9b7739cbc4bbbe9b3441f14b86","a2f52b816154a0f10772ca7609c6a4a3","0a8bd5f971d0f1376eaf5cb6b8d352f6","b0ba14415060c4376f85860da8214f77","792338f24c803e3559f7d7fa1fd52d54","56e7fa854ca5d3236ec0d2c44154eacf","8102770b231d12b1aee900fc469ea97a","3486defaa36f532df368571cc125e6d9","2b8c7f8468c0598515a6d93f221b9ec8","661f1aa4488538a66ed76ab39eb614f3","d97c3e0cea377a6f2754cc792891f47a","9a229d49e8308aa93053cb4e89efeb6e","3b348eb79c269cee795c0181ba2d52b9","53b1cfa2080be6827e0e11ba96e1b60b","bc6bc41aa11c346578e2682b138907df","11873484dc9506b32b2ccdf387712959","a796f4e2be5296614d2eac0fc6f0bb1d"]
Date: Jul 30, 2026
rollupOptions.input should not be an html file when building for SSR error. Stack: vite/dist/node/chunks/config.js:33532:73 → resolveRollupOptions/home/byk/Code/binpatch/website/node_modules/.bin/astro shim has shell script with unescaped parens: basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") → SyntaxError: missing ) after argument list when run via Node.js v24.16.0. pnpm v10.28.0 install took 19.7sbuildEnvironments function contains astro:resolve-input plugin that normalizes rolldown input: if (typeof config.build?.rolldownOptions?.input === "string") { config.build.rolldownOptions.input = { index: config.build.rolldownOptions.input }; }. Comment: "When the rolldown input is safe to update, we normalize it to always be an object"prerender, then ssr (only if needsServerBuild(settings, builder)), then client. Calls vite.createBuilder(updatedViteBuildConfig).buildApp(). buildPostHooks collected from SSR plugins' api.buildPostHookLEGACY_SSR_ENTRY_VIRTUAL_MODULE only when legacyAdapter && settings.buildOutput === "server". Static build satisfies neither. cssMinify: true by default. preserveEntrySignatures: "exports-only", checks.pluginTimings: falseenvironments.prerender default input = astro/entrypoints/prerender (unless adapter has entrypointResolution: 'self' with custom prerenderer); environments.client minify defaults to true; environments.ssr is separate blockawait buildEnvironments(opts, internals); — error originates inside builder.buildApp() which builds prerender/ssr/client environments sequentially