How to run the Source project file?

I want to modify the Source project files in my Visual Studio Code.

I can successfully build a website using the Built Project files by running python -m http.server 8080
I can see the web UI/UX in the localhost

But I don’t know how to build a website using the Source Project files.
When I tried to run the same command python -m http.server 8000 (I changed the port to 8000 from 8080 this time), I have the following results:

The localhost website result:

May I know how you run the Source project files?

I’m in the same boat. Need to ajust a custom componente in vscode and cant test or see it

Hi,

according to Weweb docs, raw files need a build step which may refer to bundling (through VIte or Parcel), transpiling, minification, etc

1 Like

You need to run npm install and npm run dev afterwards I think.