generated from moduslabs/template
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathserver.js
51 lines (42 loc) · 1.36 KB
/
server.js
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
const path = require("path");
const express = require("express");
const { createSSRApp } = require("vue");
const { renderToString } = require("@vue/server-renderer");
const manifest = require("../dist/ssr-manifest.json");
const clientManifest = require("../client-dist/ssr-manifest.json");
const server = express();
const appPath = path.join(__dirname, "../dist", manifest["app.js"]);
const clientAppPath = path.join(__dirname, "../client-dist", clientManifest["client.js"]);
const App = require(appPath).default;
server.use("/img", express.static(path.join(__dirname, "../dist", "img")));
server.use("/js", express.static(path.join(__dirname, "../dist", "js")));
server.use("/css", express.static(path.join(__dirname, "../dist", "css")));
server.use(
"/favicon.ico",
express.static(path.join(__dirname, "../dist", "favicon.ico"))
);
server.use(
"/client.js",
express.static(clientAppPath)
);
server.get("*", async (req, res) => {
const app = createSSRApp(App);
const appContent = await renderToString(app);
const html = `
<html>
<head>
<title>Hello</title>
<link rel="stylesheet" href="${manifest["app.css"]}" />
<script src="/client.js"></script>
</head>
<body>
<div id="app">${appContent}</div>
</body>
</html>
`;
res.end(html);
});
console.log(`
You can navigate to http://localhost:8080
`);
server.listen(8080);