diff --git a/playgrounds/angular/src/app/app.component.ts b/playgrounds/angular/src/app/app.component.ts index 054ddbad..199a3e0c 100644 --- a/playgrounds/angular/src/app/app.component.ts +++ b/playgrounds/angular/src/app/app.component.ts @@ -2,8 +2,8 @@ import { Component } from '@angular/core' import { instantMeiliSearch } from '../../../../src' const searchClient = instantMeiliSearch( - 'https://demo-steam.meilisearch.com/', - '90b03f9c47d0f321afae5ae4c4e4f184f53372a2953ab77bca679ff447ecc15c' + 'https://demos.meilisearch.com', + 'dc3fedaf922de8937fdea01f0a7d59557f1fd31832cb8440ce94231cfdde7f25' ) @Component({ diff --git a/playgrounds/html/public/index.html b/playgrounds/html/public/index.html index 4e535289..ec61b70e 100644 --- a/playgrounds/html/public/index.html +++ b/playgrounds/html/public/index.html @@ -1,14 +1,16 @@ - - - - - - + + + +
@@ -17,29 +19,29 @@ To use this browser build, please change the following script tag with this CDN --> - - - + + - + } + }) + ]); + search.start(); + + + diff --git a/playgrounds/javascript/src/app.js b/playgrounds/javascript/src/app.js index 9d01f27f..b43063a2 100644 --- a/playgrounds/javascript/src/app.js +++ b/playgrounds/javascript/src/app.js @@ -3,8 +3,8 @@ import { instantMeiliSearch } from '../../../src/index' const search = instantsearch({ indexName: 'steam-video-games', searchClient: instantMeiliSearch( - 'https://demo-steam.meilisearch.com', - '90b03f9c47d0f321afae5ae4c4e4f184f53372a2953ab77bca679ff447ecc15c', + 'https://demos.meilisearch.com', + 'dc3fedaf922de8937fdea01f0a7d59557f1fd31832cb8440ce94231cfdde7f25', { limitPerRequest: 30, } diff --git a/playgrounds/react/src/App.js b/playgrounds/react/src/App.js index 916a4b3a..a1053711 100644 --- a/playgrounds/react/src/App.js +++ b/playgrounds/react/src/App.js @@ -17,8 +17,8 @@ import './App.css' import { instantMeiliSearch } from '../../../src/index' const searchClient = instantMeiliSearch( - 'https://demo-steam.meilisearch.com/', - '90b03f9c47d0f321afae5ae4c4e4f184f53372a2953ab77bca679ff447ecc15c', + 'https://demos.meilisearch.com', + 'dc3fedaf922de8937fdea01f0a7d59557f1fd31832cb8440ce94231cfdde7f25', { paginationTotalHits: 60, primaryKey: 'id', diff --git a/playgrounds/vue/src/App.vue b/playgrounds/vue/src/App.vue index 949fa0ac..087a7186 100644 --- a/playgrounds/vue/src/App.vue +++ b/playgrounds/vue/src/App.vue @@ -84,8 +84,8 @@ export default { return { recommendation: '', searchClient: instantMeiliSearch( - 'https://demo-steam.meilisearch.com', - '90b03f9c47d0f321afae5ae4c4e4f184f53372a2953ab77bca679ff447ecc15c' + 'https://demos.meilisearch.com', + 'dc3fedaf922de8937fdea01f0a7d59557f1fd31832cb8440ce94231cfdde7f25' ), } },