Skip to content

Commit

Permalink
Bundle unminified Cesium sources in debug build.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephbirkner committed Dec 16, 2024
1 parent 9e4a79c commit 1183aa6
Showing 1 changed file with 32 additions and 8 deletions.
40 changes: 32 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"assets": [
{
"glob": "**/*",
"input": "node_modules/cesium/Build/Cesium",
"input": "node_modules/cesium/Build/CesiumUnminified",
"output": "/bundle/cesium"
},
{
Expand Down Expand Up @@ -58,9 +58,7 @@
"node_modules/material-icons/iconfont/material-icons.css",
"erdblick_app/styles.scss"
],
"scripts": [

],
"scripts": [],
"customWebpackConfig": {
"path": "./webpack.config.js"
},
Expand All @@ -80,7 +78,34 @@
"maximumError": "4kb"
}
],
"outputHashing": "all"
"outputHashing": "all",
"assets": [
{
"glob": "**/*",
"input": "node_modules/cesium/Build/Cesium",
"output": "/bundle/cesium"
},
{
"glob": "**/*",
"input": "config/styles",
"output": "/bundle/styles"
},
{
"glob": "**/*",
"input": "images",
"output": "/bundle/images"
},
{
"glob": "**/*.json",
"input": "config",
"output": "/"
},
{
"glob": "VERSION",
"input": ".",
"output": "/bundle/"
}
]
},
"development": {
"buildOptimizer": false,
Expand Down Expand Up @@ -123,8 +148,7 @@
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
],
"assets": [],
"styles": [
"erdblick_app/styles.scss"
],
Expand All @@ -136,6 +160,6 @@
}
},
"cli": {
"analytics": false
"analytics": false
}
}

0 comments on commit 1183aa6

Please sign in to comment.