I'm having a one page site, which i needs to be translated, and therefore i'm using multisite to do this.
It has to be in english (default), and then Danish and German.
The problem is that when i press on a Site on the actual Page (on the righthand side), i can see in the network console that it just returns a 404, and a loader is just keeping on going, and of course nothing happens.
My sites.php file looks like the following:
'sites' => [
'default' => [
'name' => config('app.name'),
'locale' => 'en_US',
'url' => '/',
'flag' => 'en'
],
'dk' => [
'name' => config('app.name') . ' - DK',
'locale' => 'da_DK',
'url' => '/dk/',
'flag' => 'dk'
],
'de' => [
'name' => config('app.name') . ' - DE',
'locale' => 'de_DE',
'url' => '/de/',
'flag' => 'de'
],
]
And where all the magic should happen, is when i press the following "inactive sites":

I'm having a one page site, which i needs to be translated, and therefore i'm using multisite to do this.
It has to be in english (default), and then Danish and German.
The problem is that when i press on a Site on the actual Page (on the righthand side), i can see in the network console that it just returns a 404, and a loader is just keeping on going, and of course nothing happens.
My sites.php file looks like the following:
And where all the magic should happen, is when i press the following "inactive sites":
