astro js

Solutions on MaxInterview for astro js by the best coders in the world

showing results for - "astro js"
Muhammed
28 Jan 2020
1# prerequisite: check that Node.js is 12.20.0+, 14.13.1+, or 16+
2node --version
3
4# Make a new project directory, and navigate directly into it
5mkdir my-astro-project && cd $_
6
7# prepare for liftoff...
8npm init astro
9
10# install dependencies
11npm install
12
13# start developing!
14npm start
15
16# when you're ready: build your static site to `dist/`
17npm run build