Skip to content

Commit

Permalink
chore(server.js): remove logging for now
Browse files Browse the repository at this point in the history
  • Loading branch information
chohner committed Jan 29, 2024
1 parent 1bbcfd8 commit a93689d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { createRequestHandler } from "@remix-run/express";
import { installGlobals } from "@remix-run/node";
import compression from "compression";
import express from "express";
import morgan from "morgan";

installGlobals();

Expand Down Expand Up @@ -43,8 +42,6 @@ if (viteDevServer) {
// more aggressive with this caching.
app.use(express.static("build/client", { maxAge: "1h" }));

app.use(morgan("tiny"));

// handle SSR requests
app.all("*", remixHandler);

Expand Down

0 comments on commit a93689d

Please sign in to comment.