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
All [esbuild build](https://esbuild.github.io/api/#build-api) options except for `entryPoints` are supported.
35
+
### out
32
36
33
-
The [outdir](https://esbuild.github.io/api/#outdir) is the directory to build the server to. It defaults to `build` — i.e. `node build` would start the server locally after it has been created.
37
+
The directory to build the server to. It defaults to `build` — i.e. `node build` would start the server locally after it has been created.
38
+
39
+
### esbuildOptions
40
+
41
+
Any custom [esbuild build](https://esbuild.github.io/api/#build-api) options. It defaults to:
42
+
43
+
```js
44
+
{
45
+
outdir: out /* = 'build' */, // Unless a outfile is specified
0 commit comments