DEV Community

Discussion on: Create a SPA with Laravel and Nuxt

Collapse
 
robertbar profile image
RobertBar

Hi, Cristian!
Do you have any idea why baseURL it is recognized only when using "npm run build" and "php artisan serve" commands? When I run "npm run start" the baseURL it is not using the provided value
axios: {
baseURL: development ? 'devsite/api' : "livesite/api"
},

Collapse
 
robertbar profile image
RobertBar

Found a solution: browserbaseURL should be provided also.

axios: {
baseURL: development ? 'devsite/api' : "livesite/api",
browserBaseURL: development ? 'devsite/api' : "livesite/api"
},

Collapse
 
skyrpex profile image
Cristian Pallarés

Oh, great!