summaryrefslogtreecommitdiff
path: root/examples/snowpack/README.md
blob: bde1f0826865eefb6889b1988f51d9b209c6d53f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Astro Demo

## Getting set up

1. Check out Astro at: https://github.com/snowpackjs/astro

   1. Install and build Astro:

   ```shell
   npm install
   npm run build
   ```

   2. Link Astro:

   ```shell
   npm link
   ```

2. In this project link Astro and install other deps:

```shell
npm link astro
npm install
```

3. Run the Astro dev environment.

```shell
npm start
```

4. Build the website. (Not yet working.)

```shell
npm run build
```