From a878b2c1afc3370abe0ba98acce7c802b3a9b005 Mon Sep 17 00:00:00 2001 From: Michael Baklor Date: Thu, 11 Dec 2025 18:53:28 +0200 Subject: [PATCH] fix(config): dev server started with production build by default --- v3/UNRELEASED_CHANGELOG.md | 1 + v3/internal/commands/build_assets/config.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/v3/UNRELEASED_CHANGELOG.md b/v3/UNRELEASED_CHANGELOG.md index 8e4648038..712c4de7f 100644 --- a/v3/UNRELEASED_CHANGELOG.md +++ b/v3/UNRELEASED_CHANGELOG.md @@ -22,6 +22,7 @@ After processing, the content will be moved to the main changelog and this file ## Fixed +- Fix default `config.yml` would run `wails3 dev` with a production build by @mbaklor ## Deprecated diff --git a/v3/internal/commands/build_assets/config.yml b/v3/internal/commands/build_assets/config.yml index 7624461fd..2912d16d6 100644 --- a/v3/internal/commands/build_assets/config.yml +++ b/v3/internal/commands/build_assets/config.yml @@ -48,7 +48,7 @@ dev_mode: - "*.ts" # The frontend directory will be excluded entirely by the setting above. git_ignore: true executes: - - cmd: wails3 task build + - cmd: wails3 build DEV=true type: blocking - cmd: wails3 task common:dev:frontend type: background