Skip to content

Commit f253788

Browse files
committed
Remove react-snap and old server
1 parent 6035ed8 commit f253788

File tree

6 files changed

+6
-1671
lines changed

6 files changed

+6
-1671
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -81,21 +81,20 @@ NPM is Node's Package Manager and is used to install third party libraries and f
8181
Install dependencies by running:
8282

8383
```bash
84-
npm install
84+
npm i -g pnpm
85+
pnpm install
8586
```
8687

8788
Running
8889

8990
```bash
90-
npm start
91+
pnpm run dev
9192
```
9293

93-
in your terminal/command line will start up a local web server that runs the web app. You will be sent to the homepage (or, just head straight to http://localhost:3000/).
94+
in your terminal/command line will start up a local web server that runs the web app. You will be sent to the homepage (or, just head straight to http://localhost:5173/).
9495

9596
And that's it!
9697

97-
But, the contact form requires you to start a separate Node.js webserver. If you're wanting to develop something with the contact form, head into the `server` directory and do something similar (i.e. `cd website`, then `npm install`, and then `npm start`).
98-
9998
# How do I update the site?
10099

101100
The majority of the website's dynamic content is located in a single configuration file, which you can find at `src/config.tsx`.
@@ -114,4 +113,4 @@ Be aware that we use some extra stuff to make developing the site a bit more fun
114113
- For CSS, we use Sass (in `.scss` files). It's just like CSS, but you can nest things and define $variables. If you haven't used Sass before, check out https://sass-lang.com/guide.
115114
- For the site, we use React. This lets us split the code up into separate components.
116115

117-
As an aside, running `npm run build` will generate a folder called `build` containing all the final HTML files we should host in production. We use `react-snap` to make sure these files are understandable for search engines.
116+
As an aside, running `pnpm run build` will generate a folder called `dist` containing all the final HTML files we should host in production.

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"react-google-recaptcha": "^2.1.0",
3636
"react-helmet": "^5.2.1",
3737
"react-router-dom": "^5.3.4",
38-
"react-snap": "^1.23.0",
3938
"sass-embedded": "^1.78.0",
4039
"terser": "^5.32.0",
4140
"typescript": "^5.0.0",
@@ -47,7 +46,7 @@
4746
"scripts": {
4847
"dev": "vite",
4948
"build": "tsc && vite build",
50-
"build:prod": "npm run build && react-snap"
49+
"build:prod": "npm run build"
5150
},
5251
"reactSnap": {
5352
"source": "dist"

0 commit comments

Comments
 (0)