You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/first-steps.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,3 +100,10 @@ $ npm run start
100
100
```
101
101
102
102
This command starts the app with the HTTP server listening on the port defined in the `src/main.ts` file. Once the application is running, open your browser and navigate to `http://localhost:3000/`. You should see the `Hello World!` message.
103
+
104
+
To watch for changes in your files, you can run the following command to start the application:
105
+
```bash
106
+
$ npm run start:dev
107
+
```
108
+
109
+
This command will watch your files, automatically recompiling and reloading the server.
0 commit comments