1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Fix Nile component URLs in other places

This commit is contained in:
Troy McConaghy 2019-06-28 11:00:05 +02:00
parent da68e3efd3
commit cd8f464a6f
2 changed files with 3 additions and 3 deletions

View File

@ -197,8 +197,8 @@ The sidebar for those generated reference pages will automatically switch to inc
Reference pages based on Swagger specs are sourced from remotely hosted Swagger specs:
- [`https://nginx-aquarius.dev-ocean.com/spec`](https://nginx-aquarius.dev-ocean.com/spec)
- [`https://nginx-brizo.dev-ocean.com/spec`](https://nginx-brizo.dev-ocean.com/spec)
- [`https://aquarius.nile.dev-ocean.com/spec`](https://aquarius.nile.dev-ocean.com/spec)
- [`https://brizo.nile.dev-ocean.com/spec`](https://brizo.nile.dev-ocean.com/spec)
They are fetched and updated automatically upon every site build. For more information about stylistic issues, take a look at the section in the test page:

View File

@ -251,7 +251,7 @@ const createTypeDocPage = async (createPage, name, downloadUrl) => {
// https://github.com/swagger-api/swagger-js
const fetchSwaggerSpec = async name => {
try {
const client = await Swagger(`https://nginx-${name}.dev-ocean.com/spec`)
const client = await Swagger(`https://${name}.nile.dev-ocean.com/spec`)
return client.spec // The resolved spec
// client.originalSpec // In case you need it