-
Notifications
You must be signed in to change notification settings - Fork 0
/
remix.config.js
51 lines (51 loc) · 1.11 KB
/
remix.config.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
/** @type {import('@remix-run/dev').AppConfig} */
module.exports = {
serverBuildTarget: "netlify",
server:
process.env.NETLIFY || process.env.NETLIFY_LOCAL
? "./server.js"
: undefined,
ignoredRouteFiles: ["**/.*"],
// appDirectory: "app",
// assetsBuildDirectory: "public/build",
// serverBuildPath: ".netlify/functions-internal/server.js",
// publicPath: "/build/",
serverDependenciesToBundle: [
"bail",
"ccount",
/^character-.*/,
"comma-separated-tokens",
/^estree-.*/,
/^hast-util-.*/,
/^is-.*/,
/^mdast-util-.*/,
/^micromark.*/,
/^parse-entities.*/,
/^parse.*/,
/^stringify-entities.*/,
/^hastscript.*/,
/^web-namespaces.*/,
/^refractor.*/,
"periscopic",
"property-information",
"space-separated-tokens",
"trim-lines",
"trough",
/^vfile.*/,
// MDX:
/^rehype.*/,
/^remark.*/,
/^unified.*/,
/^unist.*/,
/^markdown-*/,
/^mdast.*/,
/^micromark.*/,
"devlop",
"ccount",
"markdown-table",
"zwitch",
"fault",
"decode-named-character-reference",
"longest-streak"
]
};