Skip to content

Commit

Permalink
fix: broken deployment on netlify
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshyadavdev authored Feb 8, 2025
1 parent 8d98cec commit 735c712
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions apps/ngu-carousel-example/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": {
"executor": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/apps/ngu-carousel-example/browser",
"outputPath": "dist/apps/ngu-carousel-example",
"index": "apps/ngu-carousel-example/src/index.html",
"browser": "apps/ngu-carousel-example/src/main.ts",
"polyfills": [],
Expand All @@ -32,7 +32,9 @@
"apps/ngu-carousel-example/src/styles.scss"
],
"scripts": [],
"allowedCommonJsDependencies": ["hammerjs"]
"allowedCommonJsDependencies": [
"hammerjs"
]
},
"configurations": {
"production": {
Expand Down Expand Up @@ -89,14 +91,19 @@
"apps/ngu-carousel-example/src/favicon.ico",
"apps/ngu-carousel-example/src/assets"
],
"styles": ["apps/ngu-carousel-example/src/styles.scss"],
"styles": [
"apps/ngu-carousel-example/src/styles.scss"
],
"scripts": []
}
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html"]
"lintFilePatterns": [
"{projectRoot}/**/*.ts",
"{projectRoot}/**/*.html"
]
}
},
"generate-bundle": {
Expand Down Expand Up @@ -145,7 +152,9 @@
"prerender": {
"executor": "@angular-devkit/build-angular:prerender",
"options": {
"routes": ["/"]
"routes": [
"/"
]
},
"configurations": {
"production": {
Expand All @@ -160,4 +169,4 @@
"defaultConfiguration": "production"
}
}
}
}

0 comments on commit 735c712

Please sign in to comment.