From 0781755d0e8c98731ae98503863511fb2ac254d3 Mon Sep 17 00:00:00 2001 From: eding Date: Wed, 16 Sep 2026 08:33:13 +0200 Subject: [PATCH] fix: support ci build configuration --- .gitignore | 3 +++ angular.json | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eeebebe --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.angular/ +dist/ +node_modules/ diff --git a/angular.json b/angular.json index 883f25f..23b7bd8 100644 --- a/angular.json +++ b/angular.json @@ -14,6 +14,9 @@ "browser": "src/main.ts", "index": "src/index.html", "tsConfig": "tsconfig.app.json" + }, + "configurations": { + "ci": {} } } } -- 2.43.7