This repository was archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathserver.ts
117 lines (98 loc) · 2.46 KB
/
server.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Webpack (server)
// ----------------------------------------------------------------------------
// IMPORTS
/* Node */
import path from "path";
/* NPM */
import { mergeWith } from "lodash";
import webpack from "webpack";
/* Local */
import common, { defaultMerger, files } from "./common";
import css from "./css";
// ----------------------------------------------------------------------------
const isProduction = process.env.NODE_ENV === "production";
// Base server config
const base: webpack.Configuration = {
entry: [path.resolve(__dirname, "..", "entry", "server.tsx")],
module: {
rules: [
...css(false),
// Images
{
test: files.images,
use: [
{
loader: "file-loader",
query: {
emitFile: false,
name: `assets/img/[name]${isProduction ? ".[hash]" : ""}.[ext]`
}
}
]
},
// Fonts
{
test: files.fonts,
use: [
{
loader: "file-loader",
query: {
emitFile: false,
name: `assets/fonts/[name]${isProduction ? ".[hash]" : ""}.[ext]`
}
}
]
}
]
},
// Name
name: "server",
// Set output
output: {
filename: "../server.js",
libraryTarget: "commonjs2",
path: path.resolve(__dirname, "..", "..", "dist", "public"),
publicPath: "/"
},
// Plugins
plugins: [
// Only emit a single `server.js` chunk
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1
}),
// Add source map support to the server-side bundle
new webpack.BannerPlugin({
banner: `require("source-map-support").install();`,
entryOnly: false,
include: ["server.js"],
raw: true
}),
// Add global variables
new webpack.DefinePlugin({
GRAPHQL: JSON.stringify(process.env.GRAPHQL),
SERVER: true,
WS_SUBSCRIPTIONS: JSON.stringify(process.env.WS_SUBSCRIPTIONS),
LOCAL_STORAGE_KEY: JSON.stringify(process.env.LOCAL_STORAGE_KEY)
})
],
resolve: {
modules: [path.resolve(__dirname, "..", "..", "node_modules")]
},
// Target
target: "node"
};
// Development config
const dev: webpack.Configuration = {
devtool: "eval-source-map"
};
// Production config
const prod: webpack.Configuration = {
devtool: "source-map"
};
export default mergeWith(
{},
common(true),
base,
process.env.NODE_ENV === "production" ? prod : dev,
defaultMerger
);