generated from OpenPecha/new-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremix.config.js
41 lines (41 loc) · 899 Bytes
/
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
/** @type {import('@remix-run/dev').AppConfig} */
// const { createRoutesFromFolders } = require("@remix-run/v1-route-convention");
module.exports = {
serverModuleFormat: "cjs",
ignoredRouteFiles: ["**/.*"],
serverDependenciesToBundle: [
/^remix-utils.*/,
"react-typing-effect",
"react-audio-visualize",
"react-icons",
"react-form-wizard-component",
"docx",
"file-saver",
"franc-min",
"react-leaflet",
"leaflet",
"@wavesurfer/react",
"react-markdown"
],
tailwind: true,
browserNodeBuiltinsPolyfill: {
modules: {
path: true,
util: true,
querystring: true,
net: true,
buffer: true,
events: true,
stream: true,
crypto: true,
http: true,
os: true,
assert: true,
tls: true,
url: true,
https: true,
fs: true,
child_process: true,
},
},
};