summaryrefslogtreecommitdiff
path: root/examples/hackernews
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-08-24 10:38:14 -0400
committerGravatar GitHub <noreply@github.com> 2023-08-24 10:38:14 -0400
commitf1c610636a7aeed0a272ab2669815135699b413c (patch)
treed7597c3468197559948f9fe2bafe13a8c3d71106 /examples/hackernews
parent608b2d732d762bf1f7f44a82b278caa8853c8c2f (diff)
parentebaccf8c1a2f37eacb6e1957c82fdf7f93b62b08 (diff)
downloadastro-f1c610636a7aeed0a272ab2669815135699b413c.tar.gz
astro-f1c610636a7aeed0a272ab2669815135699b413c.tar.zst
astro-f1c610636a7aeed0a272ab2669815135699b413c.zip
Merge pull request #8188 from withastro/next
Astro 3.0
Diffstat (limited to 'examples/hackernews')
-rw-r--r--examples/hackernews/README.md2
-rw-r--r--examples/hackernews/package.json4
-rw-r--r--examples/hackernews/sandbox.config.json2
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/hackernews/README.md b/examples/hackernews/README.md
index 937ad23ea..042a7807b 100644
--- a/examples/hackernews/README.md
+++ b/examples/hackernews/README.md
@@ -48,7 +48,7 @@ All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
-| `npm run dev` | Starts local dev server at `localhost:3000` |
+| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 92f0cd6c0..07d095a13 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^5.3.6",
- "astro": "^2.10.14"
+ "@astrojs/node": "^6.0.0-rc.1",
+ "astro": "^3.0.0-rc.5"
}
}
diff --git a/examples/hackernews/sandbox.config.json b/examples/hackernews/sandbox.config.json
index 9178af77d..8e476b8cc 100644
--- a/examples/hackernews/sandbox.config.json
+++ b/examples/hackernews/sandbox.config.json
@@ -4,7 +4,7 @@
"view": "browser",
"template": "node",
"container": {
- "port": 3000,
+ "port": 4321,
"startScript": "start",
"node": "14"
}