1234567891011121314151617181920 |
- import { createRequestHandler } from "@remix-run/express";
- import { broadcastDevReady } from "@remix-run/node";
- import express from "express";
- // notice that the result of `remix build` is "just a module"
- import * as build from "./build/index.js";
- const app = express();
- app.use(express.static("public"));
- // and your app is "just a request handler"
- app.all("*", createRequestHandler({ build }));
- app.listen(3100, () => {
- if (process.env.NODE_ENV === "development") {
- broadcastDevReady(build);
- }
- console.log("App listening on http://localhost:3100");
- });
|