diff --git a/docs/drupal/.ddev/config.yaml b/docs/drupal/.ddev/config.yaml index 1687504fd..d2ff34ba4 100644 --- a/docs/drupal/.ddev/config.yaml +++ b/docs/drupal/.ddev/config.yaml @@ -1,7 +1,7 @@ -name: drupal-9 +name: druxtjs type: drupal9 docroot: web -php_version: "7.4" +php_version: "8.1" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" diff --git a/examples/custom-module/nuxt.config.js b/examples/custom-module/nuxt.config.js index b6a7b4fd6..def7e4236 100644 --- a/examples/custom-module/nuxt.config.js +++ b/examples/custom-module/nuxt.config.js @@ -1,6 +1,6 @@ const baseUrl = process.env.GITPOD_WORKSPACE_ID ? `https://8080-${process.env.GITPOD_WORKSPACE_ID}.${process.env.GITPOD_WORKSPACE_CLUSTER_HOST}` - : process.env.BASE_URL || 'http://drupal-9.ddev.site' + : process.env.BASE_URL || 'http://druxtjs.ddev.site' export default { modules: [['druxt', { baseUrl }]], } diff --git a/examples/druxt-site/nuxt.config.js b/examples/druxt-site/nuxt.config.js index b3954b66f..05a4d0716 100644 --- a/examples/druxt-site/nuxt.config.js +++ b/examples/druxt-site/nuxt.config.js @@ -1,6 +1,6 @@ const baseUrl = process.env.GITPOD_WORKSPACE_ID ? `https://8080-${process.env.GITPOD_WORKSPACE_ID}.${process.env.GITPOD_WORKSPACE_CLUSTER_HOST}` - : process.env.BASE_URL || 'http://drupal-9.ddev.site' + : process.env.BASE_URL || 'http://druxtjs.ddev.site' export default { target: 'static', generate: { routes: ['/'] }, diff --git a/examples/entity-form/nuxt.config.js b/examples/entity-form/nuxt.config.js index f95f3f222..4fbedd96b 100644 --- a/examples/entity-form/nuxt.config.js +++ b/examples/entity-form/nuxt.config.js @@ -1,6 +1,6 @@ const baseUrl = process.env.GITPOD_WORKSPACE_ID ? `https://8080-${process.env.GITPOD_WORKSPACE_ID}.${process.env.GITPOD_WORKSPACE_CLUSTER_HOST}` - : process.env.BASE_URL || 'http://drupal-9.ddev.site' + : process.env.BASE_URL || 'http://druxtjs.ddev.site' export default { buildModules: [['druxt-entity', { baseUrl }]] diff --git a/examples/node-client/index.js b/examples/node-client/index.js index f7acbe9ea..d1ee04c30 100644 --- a/examples/node-client/index.js +++ b/examples/node-client/index.js @@ -2,7 +2,7 @@ const { DruxtClient } = require('druxt') const baseUrl = process.env.GITPOD_WORKSPACE_ID ? `https://8080-${process.env.GITPOD_WORKSPACE_ID}.${process.env.GITPOD_WORKSPACE_CLUSTER_HOST}` - : process.env.BASE_URL || 'http://drupal-9.ddev.site' + : process.env.BASE_URL || 'http://druxtjs.ddev.site' const druxt = new DruxtClient(baseUrl)