Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Single Fetch #222

Merged
merged 4 commits into from Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
force=true
brookslybrand marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -15,7 +15,7 @@ FROM base as deps

WORKDIR /remixapp

ADD package.json package-lock.json ./
ADD package.json package-lock.json .npmrc ./
RUN npm install --include=dev

# Setup production node_modules
Expand All @@ -24,7 +24,7 @@ FROM base as production-deps
WORKDIR /remixapp

COPY --from=deps /remixapp/node_modules /remixapp/node_modules
ADD package.json package-lock.json ./
ADD package.json package-lock.json .npmrc ./
RUN npm prune --omit=dev

# Build the app
Expand Down
14 changes: 0 additions & 14 deletions app/entry.client.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions app/entry.server.tsx

This file was deleted.