ClausQ's avatar

Newbee stuck on page 1

Sorry to waste your time with a no doubt trivial issue but I am following the laravel bootcamp with Blade and sqlite. Everything looks alright right down to the last paragraph on page one: "If you refresh your new Laravel application in the browser, you should now see a "Register" link at the top-right. Follow that to see the registration form provided by Laravel Breeze."

All I see is the same page: This is the Vite development server that provides Hot Module Replacement for your Laravel application. To access your Laravel application, you will need to run a local development server.

However, the Artisane server is running since I can access it at port 8000. It has been started up in another console before starting the "run dev".

When calling localhost at port 80 I just get an error (page can't be reached).

What could possibly be wrong?

Thank you in advance.

Best regards, Claus

0 likes
2 replies
gych's avatar

Default port for laravel app is 8000 not 80 -> http://127.0.0.1:8000/ php artisan serve and npm run dev should be both running/active in order to see your local app changes in the browser.

1 like
Snapey's avatar

use the url from artisan serve, not the one displayed by vite.

2 likes

Please or to participate in this conversation.