diff --git a/README.md b/README.md index 823244a5..41d98b2a 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/gatsby-node.js b/gatsby-node.js index 59e8087a..a55a94b7 100755 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -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