-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use middleware instead of plugin
- Loading branch information
Showing
2 changed files
with
13 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import type { NitroAppPlugin } from 'nitropack' | ||
import type { H3Event } from 'h3' | ||
import { eventHandler } from 'h3' | ||
|
||
// Hack around Cloudflare regression since nodejs_compat_v2 for process.env | ||
export default <NitroAppPlugin> function (nitroApp) { | ||
nitroApp.hooks.hook('request', async (event: H3Event) => { | ||
const env = event.context.cloudflare?.env || {} | ||
for (const key in env) { | ||
process.env[key] = env[key] | ||
} | ||
}) | ||
} | ||
export default eventHandler((event) => { | ||
const env = event.context.cloudflare?.env || {} | ||
for (const key in env) { | ||
process.env[key] = env[key] | ||
} | ||
}) |