Editing the app configuration file
Angular SDK
- In the SDK folder, go to
src/app/
, and open theapp.module.ts
with a text editor. - Update the
APP_BASE_HREF
entry in providers such that the value ofuseValue
is the same as the<base>
href value in theindex.html
file:{ provide: APP_BASE_HREF, useValue: "/SDK-A/" }
- Save and close the file.
React SDK
- In the SDK folder, go to
src/samples/AppSelector
, and open theindex.tsx
file with a text editor. - Update the
<Route>
elements in the<Switch>
component:const baseURL = "/SDK-R/";
- Save and close the file.
Previous topic Editing the index.html file Next topic Troubleshooting the Constellation SDKs