Skip to content

Commit

Permalink
chore(Builder): fix Vite duplicated provider when the cache is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed Oct 2, 2024
1 parent 265b761 commit fdf8504
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,28 @@
"src/locale",
{
"glob": "**/*",
"input": "./node_modules/@igo2/common/assets/",
"output": "./assets/igo2/common/"
"input": "node_modules/@igo2/common/assets/",
"output": "assets/igo2/common/"
},
{
"glob": "**/*",
"input": "./node_modules/@igo2/core/assets/",
"output": "./assets/igo2/core/"
"input": "node_modules/@igo2/core/assets/",
"output": "assets/igo2/core/"
},
{
"glob": "**/*",
"input": "./node_modules/@igo2/core/locale/",
"output": "./locale/libs_locale",
"input": "node_modules/@igo2/core/locale/",
"output": "locale/libs_locale",
"ignore": ["**/*.core.json"]
},
{
"glob": "**/*",
"input": "./node_modules/@igo2/core/theming/prebuilt-themes",
"input": "node_modules/@igo2/core/theming/prebuilt-themes",
"output": "./assets/igo2/core/theming/prebuilt-themes"
},
{
"glob": "**/*",
"input": "./node_modules/@igo2/geo/assets/",
"input": "node_modules/@igo2/geo/assets/",
"output": "./assets/igo2/geo/"
},
"src/manifest.webmanifest"
Expand Down Expand Up @@ -367,6 +367,9 @@
}
},
"cli": {
"cache": {
"enabled": false
},
"schematicCollections": [
"@schematics/angular"
],
Expand Down

0 comments on commit fdf8504

Please sign in to comment.