-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathremix.config.js
More file actions
26 lines (23 loc) · 761 Bytes
/
remix.config.js
File metadata and controls
26 lines (23 loc) · 761 Bytes
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
/** @type {import('@remix-run/dev').AppConfig} */
module.exports = {
ignoredRouteFiles: ["**/.*"],
// appDirectory: "app",
// assetsBuildDirectory: "public/build",
// serverBuildPath: "build/index.js",
// publicPath: "/build/",
devServerPort: 8002,
future: {
unstable_dev: {
https: true,
host: 'localremix',
// Port to use for the dev server (i.e. the <LiveReload> websocket)
// This can be overridden by a CLI flag: `remix dev --port 3011`
// By default, we will find an empty port and use that
port: 8002,
// Port for running your Remix app server
// This can be overridden by a CLI flag: `remix dev --app-server-port 3021`
// default: `3000`
appServerPort: 4242,
},
}
};