Skip to content

Commit

Permalink
fix: oops
Browse files Browse the repository at this point in the history
Signed-off-by: Logan McAnsh <logan@mcan.sh>
  • Loading branch information
mcansh committed Dec 21, 2022
1 parent 5e6c18c commit 3362623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-dev/cli/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export async function generateEntry(remixRoot: string, entry: string) {
// 2.1. if the entry file is a server entry file, determine if streaming is supported
if (entry.startsWith("entry.server.")) {
let type = config.serverBuildTarget ? "string" : "streaming";
if (type === "streaming") {
if (type === "string") {
defaultEntryServer = path.resolve(
defaultsDirectory,
"string-entry.server.tsx"
Expand Down

0 comments on commit 3362623

Please sign in to comment.