-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure image endpoint is there on dev reload
- Loading branch information
1 parent
e7bd25a
commit ef10248
Showing
6 changed files
with
65 additions
and
18 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
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,14 @@ | ||
import { ensureImageEndpointRoute } from '../../assets/endpoint/config.js'; | ||
import type { AstroSettings, ManifestData } from '../../types/astro.js'; | ||
import type { SSRManifest } from '../app/types.js'; | ||
import { injectDefaultRoutes } from './default.js'; | ||
|
||
export function injectDefaultDevRoutes( | ||
settings: AstroSettings, | ||
ssrManifest: SSRManifest, | ||
routeManifest: ManifestData, | ||
) { | ||
ensureImageEndpointRoute(settings, routeManifest, 'dev'); | ||
injectDefaultRoutes(ssrManifest, routeManifest); | ||
return routeManifest; | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.