We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 135cc80 commit c3a626dCopy full SHA for c3a626d
2 files changed
.github/workflows/deploy.yml
@@ -52,7 +52,7 @@ jobs:
52
- name: Install Dependencies
53
run: npm install
54
- name: Build
55
- run: ng build --base-href /vf-angular/ --configuration production
+ run: npm run build:ghpages
56
- name: Upload Build Artifacts
57
uses: actions/upload-artifact@v4
58
with:
package.json
@@ -4,7 +4,8 @@
4
"scripts": {
5
"ng": "ng",
6
"start": "ng serve",
7
- "build": "ng build --configuration production",
+ "build": "ng build",
8
+ "build:ghpages": "ng build --configuration production --base-href /vf-angular/",
9
"build:dev": "ng build --configuration development",
10
"watch": "ng build --watch --configuration development",
11
"test": "ng test",
0 commit comments