From 082cc85992f47b8bb26b575c6c9ce99ee271ed5a Mon Sep 17 00:00:00 2001 From: dkinder Date: Wed, 24 Sep 2025 12:03:11 -0400 Subject: [PATCH] Remove erroneous IsDev line --- actions/routes.go | 1 - 1 file changed, 1 deletion(-) diff --git a/actions/routes.go b/actions/routes.go index 34c1a04..990029a 100644 --- a/actions/routes.go +++ b/actions/routes.go @@ -60,7 +60,6 @@ func (app *App) getAssetHandler() (http.Handler, error) { if app.conf.DeployEnv.IsProduction() { viteHandler, err := vite.NewHandler(vite.Config{ FS: build.DistDir(), - IsDev: app.conf.DeployEnv.IsProduction(), ViteEntry: "js/main.js", ViteTemplate: vite.Vanilla, ViteManifest: "dist/manifest.json",