-
Install dependencies:
npm install
-
Start the local preview server:
npm run preview
Or use the dev script:
npm run dev
The site will be available at
http://localhost:3000
If you have Python installed, you can use Python's built-in HTTP server:
Python 3:
python3 -m http.server 3000Python 2:
python -m SimpleHTTPServer 3000Then open http://localhost:3000 in your browser.