-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.mjs
60 lines (52 loc) · 1.42 KB
/
server.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { createRequestHandler } from "@remix-run/express";
import { installGlobals } from "@remix-run/node";
import express from "express";
import expressStaticGzip from "express-static-gzip";
import { fileURLToPath } from "node:url";
import path from "node:path";
installGlobals();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const viteDevServer =
process.env.NODE_ENV === "production"
? undefined
: await import("vite").then((vite) =>
vite.createServer({
server: { middlewareMode: true },
})
);
const app = express();
// handle asset requests
if (viteDevServer) {
app.use(viteDevServer.middlewares);
} else {
app.use(
"/assets",
expressStaticGzip(path.join(__dirname, "build/client/assets"), {
immutable: true,
maxAge: "1y",
enableBrotli: true,
index: false,
serveStatic: { fallthrough: true },
})
);
}
app.use(
expressStaticGzip(path.join(__dirname, "build/client"), {
maxAge: "1h",
enableBrotli: true,
index: false,
serveStatic: { fallthrough: true },
})
);
// handle SSR requests
app.all(
"*",
createRequestHandler({
build: viteDevServer
? () => viteDevServer.ssrLoadModule("virtual:remix/server-build")
: await import("./build/server/index.js"),
})
);
const port = process.env.PORT || 3000;
app.listen(port, () => console.log("http://localhost:" + port));