castle-scene/README.md (482B)
1 # Castle Scene made with Three.js 2 3  4 5 ## Quick Start 6 7 Install node modules 8 9 ```console 10 $ npm i 11 ``` 12 13 Create local web server on current directory with `vite` 14 15 ```console 16 $ vite 17 ``` 18 19 Then go to the URL provided by `vite` 20 21 > If you don't have `vite` installed you can install it system-wide with the 22 > following command 23 > 24 > ```console 25 > # npm -g i vite 26 > ```