Telescope – Laravel menu path issue

I have installed and configured Laravel Telescope with my Laravel 10 project

telescope.php

'path' => env('TELESCOPE_PATH', 'telescope')

AppServiceProvider.php

public function register(): void
{
    if ($this->app->environment('local')) {
        $this->app->register(LaravelTelescopeTelescopeServiceProvider::class);
        $this->app->register(TelescopeServiceProvider::class);
    }
}

When I enter “my-project-path/telescope” in the URL, the dashboard loads perfectly. However, the URLs for all menus (such as “Commands,” “Schedule,” and “Jobs”) redirect to the wrong path.

For example, they go to “http://localhost/telescope/requests” where the project path after “localhost” is missing. It should actually be “http://localhost/my-project/telescope-project/public/telescope/requests.” Please guide me on how to configure this correctly.

Please guide me to configure correctly