Skip to content

Commit

Permalink
chore(config): adapting cookbooks config til new app api scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Aug 15, 2024
1 parent e92ad45 commit 5173f3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
7 changes: 3 additions & 4 deletions cookbooks/app-react-ag-grid/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ export default () => ({
"key": "ag-grid"
},
"environment": {},
"endpoints": [
{
name: 'api',
"endpoints": {
"api": {
url: 'https://foo.barz'
}
],
},
// override portal lookup
"portalHost": undefined
});
9 changes: 4 additions & 5 deletions cookbooks/app-react-bookmark-advanced/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ export default () => ({
"environment": {
"scope": "foobar"
},
"endpoints": [
{
"name": "api",
"url": "https://foo.barz"
"endpoints": {
"api": {
url: 'https://foo.barz'
}
],
},
});
9 changes: 4 additions & 5 deletions cookbooks/app-react-bookmark/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ export default () => ({
"environment": {
"scope": "foobar"
},
"endpoints": [
{
"name": "api",
"url": "https://foo.barz"
"endpoints": {
"api": {
url: 'https://foo.barz'
}
],
},
});

0 comments on commit 5173f3f

Please sign in to comment.