天天看點

如何讓SAP Spartacus ng build生成的JavaScript資源附帶上store ID

問題

As we are migrating our storefront to Spartacus, we can see the following JS resources generated do not contain the store id and this is causing issues with out cdn as we have multiple origin servers where to route the requests for this JS files.

/runtime-es2015.js

/polyfills-es2015.js

/styles-es2015.js

/vendor-es2015.js

/main-es2015.js

期望的行為

/uk/runtime-es2015.js

/uk/polyfills-es2015.js

/uk/styles-es2015.js

/uk/vendor-es2015.js

/uk/main-es2015.js

解決方案

參考這個StackOverflow文章:What’s the difference between --base-href and --deploy-url parameters of angular-cli tool

使用如下指令行:

ng build --deploy-url /uk/

繼續閱讀