Skip to content

Commit 053ff6f

Browse files
committed
Automated developer guide update
1 parent ecda7e6 commit 053ff6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/bootc/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ As an example, let's show how you can add a user to the image:
271271

272272
Firstly create a file `./config.toml` and put the following content into it:
273273

274-
```json
274+
```toml
275275
[[customizations.user]]
276276
name = "alice"
277277
password = "bob"

docs/developer-guide/02-projects/image-builder-frontend/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ import { FOOBAR_API } from '../constants';
117117
// initialize an empty api service that we'll inject endpoints into later as needed
118118
export const emptyFoobarApi = createApi({
119119
reducerPath: 'foobarApi',
120-
baseQuery: fetchBaseQuery({ baseUrl: FOO_BAR }),
120+
baseQuery: fetchBaseQuery({ baseUrl: window.location.origin + FOO_BAR }),
121121
endpoints: () => ({}),
122122
});
123123
```

0 commit comments

Comments
 (0)