-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremix.config.js
130 lines (130 loc) · 3.53 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
/** @type {import('@remix-run/dev').AppConfig} */
export default {
ignoredRouteFiles: ['**/*.css', '**/*.ts', '**/*.stories.ts', '**/*.stories.tsx', '**/*.js'],
cacheDirectory: '.cache',
appDirectory: 'src/app',
watchPaths: ['src', 'tailwind.config.js'],
tailwind: true,
postcss: false,
assetsBuildDirectory: 'public/build',
publicPath: '/build/',
serverPlatform: 'node',
browserNodeBuiltinsPolyfill: {
modules: {
process: true,
},
globals: {
process: true,
},
},
serverNodeBuiltinsPolyfill: {
globals: {
Buffer: true,
},
},
serverDependenciesToBundle: [
'unified',
'bail',
'trough',
'vfile',
'vfile-message',
'unist-util-stringify-position',
'refractor/lib/common.js',
'parse-entities',
'character-reference-invalid',
'common',
/^mdast*/,
/^refractor*/,
/^is*/,
/^unified*/,
/^micromark*/,
/^github*/,
/^unist*/,
/^hast*/,
/^rehype*/,
/^remark*/,
'remark-gfm',
'remark-rehype',
'remark-stringify',
'remark-breaks',
'micromark-util-combine-extensions',
'micromark-util-chunked',
'micromark-util-character',
/^micromark-extensions*/,
'micromark-core-commonmark',
'micromark-factory-space',
'micromark-util-normalize-identifier',
'micromark-util-classify-character',
'micromark-util-resolve-all',
'mdast-util-gfm',
'mdast-util-gfm-autolink-literal',
'ccount',
'mdast-util-find-and-replace',
'unist-util-visit-parents',
'unist-util-is',
'mdast-util-gfm-footnote',
'mdast-util-to-markdown/lib/util/association.js',
'micromark-util-decode-string',
'decode-named-character-reference',
'character-entities',
'micromark-util-decode-numeric-character-reference',
'mdast-util-to-markdown/lib/util/container-flow.js',
'mdast-util-to-markdown/lib/util/indent-lines.js',
'mdast-util-to-markdown/lib/util/safe.js',
'mdast-util-to-markdown/lib/util/track.js',
'mdast-util-gfm-strikethrough',
'mdast-util-to-markdown/lib/util/container-phrasing.js',
'mdast-util-gfm-table',
'mdast-util-to-markdown/lib/handle/inline-code.js',
'mdast-util-gfm-task-list-item',
'mdast-util-to-markdown/lib/handle/list-item.js',
'mdast-util-newline-to-break',
'remark-parse',
'mdast-util-from-markdown',
'mdast-util-to-string',
'micromark/lib/parse.js',
'micromark-util-subtokenize',
'micromark-factory-destination',
'micromark-factory-label',
'micromark-factory-title',
'micromark-factory-whitespace',
'micromark-factory',
'micromark',
'micromark-util-html-tag-name',
'micromark/lib/postprocess.js',
'micromark/lib/preprocess.js',
'mdast-util-to-hast',
'unist-builder',
'unist-util-visit',
'unist-util-position',
'unist-util-generated',
'mdast-util-definitions',
'rehype-stringify',
'hast-util-to-html',
'property-information',
'html-void-elements',
'zwitch',
'stringify-entities',
'character-entities-legacy',
'character-entities-html4',
'comma-separated-tokens',
'space-separated-tokens',
'hast-util-whitespace',
'rehype-highlight',
'lowlight',
'fault',
'hast-util-to-text',
'hast-util-is-element',
'unist-util-find-after',
'remark-math',
'micromark-extension-math',
'mdast-util-math',
'longest-streak',
'mdast-util-to-markdown/lib/util/pattern-compile.js',
'rehype-mathjax',
'hast-util-from-dom',
'web-namespaces',
'hastscript',
'hast-util-parse-selector',
],
};