diff --git a/dev/public/wp-config-environment.php b/dev/public/wp-config-environment.php index 9cb56cb..fc5b794 100644 --- a/dev/public/wp-config-environment.php +++ b/dev/public/wp-config-environment.php @@ -41,7 +41,7 @@ function app_env( string $name, $default = null ) { define( 'WP_SITEURL', app_env( 'WP_SITEURL', 'https://telemetry-library.lndo.site/wp' ) ); define( 'WP_CONTENT_URL', sprintf( '%s/wp-content', WP_HOME ) ); define( 'WP_CONTENT_DIR', __DIR__ . '/wp-content' ); -define( 'TELEMETRY_SERVER_URL', app_env( 'TELEMETRY_SERVER_URL', 'https://telemetry-dev.stellarwp.com/api/v1' ) ); +define( 'TELEMETRY_SERVER_URL', app_env( 'TELEMETRY_SERVER_URL', 'https://telemetry-server.lndo.site/api/v1' ) ); $table_prefix = app_env( 'DB_PREFIX', 'wp_' ); // phpcs:ignore