-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tlenclos/feature/image-optimization
Image optimization
- Loading branch information
Showing
5 changed files
with
353 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import type { LoaderFunction } from "@remix-run/server-runtime"; | ||
import { imageLoader, LoaderConfig, MemoryCache } from "remix-image/server"; | ||
import { sharpTransformer } from "remix-image-sharp"; | ||
|
||
const config: LoaderConfig = { | ||
selfUrl: | ||
process.env.NODE_ENV === "development" | ||
? "http://localhost:3001" | ||
: "https://joli-mapstr.vercel.app/", | ||
transformer: sharpTransformer, | ||
cache: new MemoryCache(), | ||
redirectOnFail: true, | ||
}; | ||
|
||
export const loader: LoaderFunction = ({ request }) => { | ||
return imageLoader(config, request); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d1a2de6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
joli-mapstr – ./
joli-mapstr-tlenclos.vercel.app
joli-mapstr-git-master-tlenclos.vercel.app
joli-mapstr.vercel.app