Frédéric Chiasson

Results 5 comments of Frédéric Chiasson

If you're using Laravel Sail (Docker), you might also check if your 6001 port is open in `docker-compose.yml`. ```yml services: laravel.test: #... ports: - '${APP_PORT:-80}:80' - '${VITE_PORT:-5173}:${VITE_PORT:-5173}' - '6001:6001' #websocket...

Here is a solution to avoid redeclaring the headers on each API call. In `resources/js/bootstrap.js` ```js import axios from 'axios'; import Echo from 'laravel-echo'; import Pusher from 'pusher-js'; axios.defaults.headers.common['Access-Control-Allow-Origin'] =...

I have the same problem and I have been able to fix it by making a quick fix in _parseSegmentValue_ function in the _localize-router.service.ts_ file. The culprit is the condition...

@kadosh1000 Yes, you just have to fork my copy of localize-router : https://github.com/cariboufute/localize-router

Thanks! Let me check this in a few days. Sorry for the long wait, I just moved to a new apartment and there were holidays...