From 8f647bade37d1efcc3ce967fcca48ccb9b5f3a88 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 30 Oct 2025 20:18:44 -0700 Subject: [PATCH] Remove NPM install from frontend configuration The default sets install to true --- .../templates/aspire-py-starter/13.0/apphost.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Aspire.ProjectTemplates/templates/aspire-py-starter/13.0/apphost.cs b/src/Aspire.ProjectTemplates/templates/aspire-py-starter/13.0/apphost.cs index 6406b4e17c6..435e3ac6d9f 100644 --- a/src/Aspire.ProjectTemplates/templates/aspire-py-starter/13.0/apphost.cs +++ b/src/Aspire.ProjectTemplates/templates/aspire-py-starter/13.0/apphost.cs @@ -21,7 +21,6 @@ .WithHttpHealthCheck("/health"); var frontend = builder.AddViteApp("frontend", "./frontend") - .WithNpm(install: true) .WithReference(app) .WaitFor(app);