-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use KV for the manifest files
- Loading branch information
1 parent
09a9ead
commit 209032b
Showing
6 changed files
with
26 additions
and
79 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 was deleted.
Oops, something went wrong.
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,13 @@ | ||
// @ts-nocheck | ||
/* eslint-disable @typescript-eslint/no-require-imports,import/no-commonjs */ | ||
|
||
// These json imports will be preserved by webpack, and then bundled by wrangler | ||
// into the final worker bundle. This needs to be done in this way, | ||
// because most of the manifests are only available after the client bundle has | ||
// been created, at which point webpack has already emitted the server bundle. | ||
|
||
export const reactServerManifest = require(/* webpackIgnore: true */ `./react-server-manifest.json`); | ||
export const reactClientManifest = require(/* webpackIgnore: true */ `./client/react-client-manifest.json`); | ||
export const reactSsrManifest = require(/* webpackIgnore: true */ `./client/react-ssr-manifest.json`); | ||
export const cssManifest = require(/* webpackIgnore: true */ `./client/css-manifest.json`); | ||
export const jsManifest = require(/* webpackIgnore: true */ `./client/js-manifest.json`); |
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.