Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

dancingflamingo's avatar

My changes does not reflect to the local project with the Vue starter kit

Hi, I'm still learning

When I create new laravel project without using Starter Kit and make some changes on welcome page (some text I change), it does reflect to the website i see. Just random text I add to see the change

This is the output Laravel has an incredibly asdasda ecosystem. We suggest asdasdstarting with the following.

But the problem is when I want to use the Vue starter kit, create new project and also try to make some changes on welcome page. But it does not reflect what text i wrote. Any changes is not reflected.

Can someone help me why this is happening?

Edit: For your info I create the project using Laravel Herd

0 likes
5 replies
Tray2's avatar
Tray2
Best Answer
Level 73

Have you started npm run dev or composer run dev?

dancingflamingo's avatar

@Tray2 hello, today I created new project and the command npm run dev is stuck for very long time

this is the output:

dev vite

VITE v6.2.0 ready in 762 ms

➜ Local: https://vite.my-vue-auth.test:5173/ ➜ Network: https://my-vue-auth.test:5173/ ➜ press h + enter to show help

LARAVEL v12.2.0 plugin v1.2.0

➜ APP_URL: http://my-vue-auth.test ➜ Using Herd certificate to secure Vite.

it doesn't finish running the command, had to kill it because it took so long

Tray2's avatar

@dancingflamingo That is correct, it "watches" the files included, and compiles the assets automatically every time you save the changes, it also hosts the files on it's own little server.

You need it running for the CSS and JS to work. When you are ready for sending it to production, you run npm run build

Please or to participate in this conversation.