Skip to content

Commit

Permalink
feat(angular-19): upgrade to angular 19
Browse files Browse the repository at this point in the history
- first try
- remove using $baseSDN: 'https://fusion.ironsrc.net/assets'; from _fonts.scss
- need to check url('#{$baseSDN}/fonts/NHaasGroteskDSPro-75Bd.woff2') - using sass var in url()
  • Loading branch information
AndyKIron committed Nov 24, 2024
1 parent 2d76b13 commit a871af2
Show file tree
Hide file tree
Showing 401 changed files with 7,476 additions and 5,616 deletions.
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,15 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/fusion-docs",
"outputPath": {
"base": "dist/fusion-docs"
},
"index": "projects/fusion-docs/src/index.html",
"main": "projects/fusion-docs/src/main.ts",
"polyfills": "projects/fusion-docs/src/polyfills.ts",
"polyfills": [
"projects/fusion-docs/src/polyfills.ts"
],
"tsConfig": "projects/fusion-docs/tsconfig.app.json",
"assets": [
"projects/fusion-docs/src/assets"
Expand All @@ -109,12 +112,11 @@
"projects/fusion-docs/src/styles.scss"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "projects/fusion-docs/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -129,8 +131,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down
Loading

0 comments on commit a871af2

Please sign in to comment.