You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build-frontend: drop --localize, drop en-US promotion step
We never translated any ordpool components and the locale switcher is
hidden in the footer, so multi-locale builds produce 30+ duplicate
bundles for nothing. Single-locale build is faster and the dist root
ends up with index.html directly (no en-US/ subdir to promote).
Copy file name to clipboardExpand all lines: frontend/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@
32
32
"start:local-esplora": "npm run generate-themes && npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-esplora",
33
33
"start:local-prod": "npm run generate-themes && npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-prod",
34
34
"start:mixed": "npm run generate-themes && npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c mixed",
35
-
"build": "npm run generate-themes && npm run generate-config && npm run ng -- build --configuration production --localize && npm run sync-assets-dev && npm run sync-assets",
35
+
"build": "npm run generate-themes && npm run generate-config && npm run ng -- build --configuration production && npm run sync-assets-dev && npm run sync-assets",
0 commit comments