diff --git a/packages/astro/README.md b/packages/astro/README.md
index ede32d3970..a4082a15b5 100644
--- a/packages/astro/README.md
+++ b/packages/astro/README.md
@@ -30,8 +30,8 @@ The default Astro project has the following `scripts` in the `/package.json` fil
```json
{
"scripts": {
- "start": "astro dev .",
- "build": "astro build ."
+ "start": "astro dev",
+ "build": "astro build"
}
}
```
diff --git a/www/package.json b/www/package.json
index 04fa10dcc8..e9426b700d 100644
--- a/www/package.json
+++ b/www/package.json
@@ -2,8 +2,8 @@
"name": "www",
"version": "1.1.0",
"scripts": {
- "start": "astro dev .",
- "build": "astro build ."
+ "start": "astro dev",
+ "build": "astro build"
},
"devDependencies": {
"astro": "^0.12.10"
diff --git a/www/src/pages/blog/introducing-astro.astro b/www/src/pages/blog/introducing-astro.astro
index 2e768c7805..bc87a41bc6 100644
--- a/www/src/pages/blog/introducing-astro.astro
+++ b/www/src/pages/blog/introducing-astro.astro
@@ -115,6 +115,16 @@ npm start
+
+
+
+