You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/reference/build-server.mdx
+19-20Lines changed: 19 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,20 +64,24 @@ This step is optional, you can use our pre-built binaries hosted on the NPM. The
64
64
git submodule update --init --recursive
65
65
```
66
66
67
-
2.### [Optional] Link `droplet`
68
-
69
-
Use the directory from the `droplet` build:
67
+
2.### Install Node.js dependencies using `pnpm`
70
68
71
69
```bash
72
-
pnpm install<droplet dir>
70
+
pnpm install
73
71
```
74
72
75
-
3.### Install Node.js dependencies using `pnpm`
73
+
3.### [Optional] Copy in custom build of `droplet`
74
+
75
+
Unfortunately, we cannot directly link the `droplet` package we built into Drop, because it's a development version and won't work properly in the built server.
76
+
77
+
To copy in your freshly built `droplet` binary, determine the binary triplet you're using. There should be a file called `droplet.<triplet>.node` in your `droplet` directory. Copy that file into the corresponding file in `node_modoles/@drop-oss/droplet-<triplet>`:
0 commit comments