nitro-nightly 3.0.1-20251104-000640-50897794 → 3.0.1-20251104-004217-fa27a9a2
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.
|
@@ -695,10 +695,10 @@ async function setupNitroContext(ctx, configEnv, userConfig) {
|
|
|
695
695
|
};
|
|
696
696
|
nitroConfig.modules ??= [];
|
|
697
697
|
for (const plugin of flattenPlugins(userConfig.plugins || [])) if (plugin.nitro) nitroConfig.modules.push(plugin.nitro);
|
|
698
|
-
nitroConfig.builder = ctx._isRolldown ? "rolldown-vite" : "
|
|
698
|
+
nitroConfig.builder = ctx._isRolldown ? "rolldown-vite" : "vite";
|
|
699
699
|
debug("[init] Using builder:", nitroConfig.builder);
|
|
700
700
|
ctx.nitro = ctx.pluginConfig._nitro || await createNitro(nitroConfig);
|
|
701
|
-
ctx.nitro.options.builder = ctx._isRolldown ? "rolldown-vite" : "
|
|
701
|
+
ctx.nitro.options.builder = ctx._isRolldown ? "rolldown-vite" : "vite";
|
|
702
702
|
if (!ctx.pluginConfig.services?.ssr) {
|
|
703
703
|
ctx.pluginConfig.services ??= {};
|
|
704
704
|
if (userConfig.environments?.ssr === void 0) {
|
package/package.json
CHANGED