Skip to content

Commit c2921eb

Browse files
committed
feat: update setup script
1 parent 7dbfa34 commit c2921eb

File tree

4 files changed

+186
-188
lines changed

4 files changed

+186
-188
lines changed

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,23 @@
77
"build": "remix vite:build",
88
"dev": "remix vite:dev",
99
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
10-
"start": "remix-serve ./build/server/index.js",
10+
"start": "netlify serve",
1111
"typecheck": "tsc"
1212
},
1313
"dependencies": {
14+
"@netlify/edge-functions": "^2.3.1",
15+
"@netlify/functions": "^2.6.0",
16+
"@netlify/remix-adapter": "^2.2.0",
1417
"@netlify/remix-edge-adapter": "^3.1.0",
1518
"@netlify/remix-runtime": "^2.1.0",
19+
"@remix-run/node": "*",
1620
"@remix-run/react": "*",
1721
"@remix-run/serve": "*",
1822
"isbot": "^4.1.0",
1923
"react": "^18.2.0",
2024
"react-dom": "^18.2.0"
2125
},
2226
"devDependencies": {
23-
"@netlify/functions": "^2.5.1",
2427
"@remix-run/dev": "*",
2528
"@types/react": "^18.2.20",
2629
"@types/react-dom": "^18.2.7",
@@ -39,4 +42,4 @@
3942
"engines": {
4043
"node": ">=18.0.0"
4144
}
42-
}
45+
}

remix.init/README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,14 @@ Run
4343
netlify dev
4444
```
4545

46-
Open up [http://localhost:3000](http://localhost:3000), and you're ready to go!
47-
48-
### Adding Redirects and Rewrites
49-
50-
To add redirects and rewrites, add them to the `netlify.toml` file. For more information about redirects and rewrites, see the [Netlify docs](https://docs.netlify.com/routing/redirects/).
46+
Open up [http://localhost:8888](http://localhost:8888), and you're ready to go!
5147

5248
### Serve your site locally
5349

5450
To serve your site locally in a production-like environment, run
5551

5652
```sh
57-
npm run start
53+
netlify serve
5854
```
5955

6056
Your site will be available at [http://localhost:8888](http://localhost:8888). Note that it will not auto-reload when you make changes.

0 commit comments

Comments
 (0)