Skip to content

Commit e2a454c

Browse files
committed
Angular 19
1 parent 26cf6bc commit e2a454c

File tree

314 files changed

+26454
-11401
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+26454
-11401
lines changed

frontend/angular.json

Lines changed: 17 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,23 @@
2929
"prefix": "mina",
3030
"architect": {
3131
"build": {
32-
"builder": "@angular-builders/custom-webpack:browser",
32+
"builder": "@angular-devkit/build-angular:application",
3333
"options": {
34-
"customWebpackConfig": {
35-
"path": "./webpack.config.js"
36-
},
37-
"outputPath": "dist/frontend/browser",
34+
"outputPath": "dist/frontend",
3835
"index": "src/index.html",
39-
"main": "src/main.ts",
36+
"browser": "src/main.ts",
4037
"polyfills": [
41-
"zone.js",
42-
"polyfills.ts"
38+
"zone.js"
4339
],
4440
"tsConfig": "tsconfig.app.json",
4541
"inlineStyleLanguage": "scss",
4642
"assets": [
47-
"src/assets"
43+
"src/assets",
44+
{
45+
"glob": "**/*",
46+
"input": "public/",
47+
"output": "/"
48+
}
4849
],
4950
"sourceMap": true,
5051
"styles": [
@@ -74,9 +75,7 @@
7475
"outputHashing": "all"
7576
},
7677
"development": {
77-
"buildOptimizer": false,
7878
"optimization": false,
79-
"vendorChunk": true,
8079
"extractLicenses": false,
8180
"sourceMap": true,
8281
"namedChunks": true
@@ -121,22 +120,22 @@
121120
"defaultConfiguration": "production"
122121
},
123122
"serve": {
124-
"builder": "@angular-builders/custom-webpack:dev-server",
123+
"builder": "@angular/build:dev-server",
125124
"configurations": {
126125
"production": {
127-
"browserTarget": "frontend:build:production"
126+
"buildTarget": "frontend:build:production"
128127
},
129128
"development": {
130-
"browserTarget": "frontend:build:development"
129+
"buildTarget": "frontend:build:development"
131130
},
132131
"webnodelocal": {
133-
"browserTarget": "frontend:build:webnodelocal"
132+
"buildTarget": "frontend:build:webnodelocal"
134133
},
135134
"local": {
136-
"browserTarget": "frontend:build:local"
135+
"buildTarget": "frontend:build:local"
137136
},
138137
"fuzzing": {
139-
"browserTarget": "frontend:build:fuzzing"
138+
"buildTarget": "frontend:build:fuzzing"
140139
}
141140
},
142141
"options": {
@@ -148,10 +147,7 @@
148147
"defaultConfiguration": "development"
149148
},
150149
"extract-i18n": {
151-
"builder": "@angular-devkit/build-angular:extract-i18n",
152-
"options": {
153-
"buildTarget": "frontend:build"
154-
}
150+
"builder": "@angular/build:extract-i18n"
155151
},
156152
"test": {
157153
"builder": "@angular-devkit/build-angular:karma",
@@ -170,69 +166,6 @@
170166
"scripts": []
171167
}
172168
},
173-
"server": {
174-
"builder": "@angular-devkit/build-angular:server",
175-
"options": {
176-
"outputPath": "dist/frontend/server",
177-
"main": "server.ts",
178-
"tsConfig": "tsconfig.server.json",
179-
"stylePreprocessorOptions": {
180-
"includePaths": [
181-
"src/assets",
182-
"src/assets/styles",
183-
"src/assets/styles/utilities",
184-
"src/assets/images"
185-
]
186-
},
187-
"inlineStyleLanguage": "scss"
188-
},
189-
"configurations": {
190-
"production": {
191-
"outputHashing": "media",
192-
"fileReplacements": [
193-
{
194-
"replace": "src/environments/environment.ts",
195-
"with": "src/environments/environment.prod.ts"
196-
}
197-
]
198-
},
199-
"development": {
200-
"buildOptimizer": false,
201-
"optimization": false,
202-
"sourceMap": true,
203-
"extractLicenses": false,
204-
"vendorChunk": true
205-
},
206-
"local": {
207-
"outputHashing": "media",
208-
"fileReplacements": [
209-
{
210-
"replace": "src/environments/environment.ts",
211-
"with": "src/environments/environment.local.ts"
212-
}
213-
]
214-
},
215-
"fuzzing": {
216-
"fileReplacements": [
217-
{
218-
"replace": "src/environments/environment.ts",
219-
"with": "src/environments/environment.fuzzing.ts"
220-
}
221-
],
222-
"outputHashing": "all"
223-
},
224-
"producer": {
225-
"outputHashing": "media",
226-
"fileReplacements": [
227-
{
228-
"replace": "src/environments/environment.ts",
229-
"with": "src/environments/environment.producer.ts"
230-
}
231-
]
232-
}
233-
},
234-
"defaultConfiguration": "production"
235-
},
236169
"serve-ssr": {
237170
"builder": "@angular-devkit/build-angular:ssr-dev-server",
238171
"configurations": {

0 commit comments

Comments
 (0)