Skip to content

Commit 1e98893

Browse files
committedOct 30, 2024·
fix(cloudflare): exclude all static routes using nitro config
1 parent 162276b commit 1e98893

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed
 

‎src/build/build.ts

+7-17
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { readFile, writeFile } from 'node:fs/promises'
77
import { resolvePath, useNuxt } from '@nuxt/kit'
88
import { dirname } from 'pathe'
99
import { applyNitroPresetCompatibility, getPresetNitroPresetCompatibility, resolveNitroPreset } from '../compatibility'
10-
import { gray, logger } from '../logger'
1110

1211
// we need all of the runtime dependencies when using build
1312
export async function setupBuildHandler(config: ModuleOptions, resolve: Resolver['resolve'], nuxt: Nuxt = useNuxt()) {
@@ -29,8 +28,14 @@ export async function setupBuildHandler(config: ModuleOptions, resolve: Resolver
2928
// HACK: we need to patch the compiled output to fix the wasm resolutions using esmImport
3029
// TODO replace this once upstream is fixed
3130
nuxt.hooks.hook('nitro:init', async (nitro) => {
31+
const target = resolveNitroPreset(nitro.options)
32+
const isCloudflarePagesOrModule = target === 'cloudflare-pages' || target === 'cloudflare-module'
33+
if (isCloudflarePagesOrModule) {
34+
nitro.options.cloudflare.pages.routes = nitro.options.cloudflare.pages.routes || { exclude: [] }
35+
nitro.options.cloudflare.pages.routes.exclude = nitro.options.cloudflare.pages.routes.exclude || []
36+
nitro.options.cloudflare.pages.routes.exclude.push('/__og-image__/static/*')
37+
}
3238
nitro.hooks.hook('compiled', async (_nitro) => {
33-
const target = resolveNitroPreset(_nitro.options)
3439
const compatibility = getPresetNitroPresetCompatibility(target)
3540
if (compatibility.wasm?.esmImport !== true)
3641
return
@@ -39,27 +44,12 @@ export async function setupBuildHandler(config: ModuleOptions, resolve: Resolver
3944
? configuredEntry
4045
: 'index.mjs')
4146
const wasmEntries = [serverEntry]
42-
const isCloudflarePagesOrModule = target === 'cloudflare-pages' || target === 'cloudflare-module'
4347
if (isCloudflarePagesOrModule) {
4448
// this is especially hacky, basically need to add all paths the wasm import can exist on
4549
// TODO maybe implement https://github.com/pi0/nuxt-shiki/blob/50e80fb6454de561e667630b4e410d2f7b5f2d35/src/module.ts#L103-L128
4650
wasmEntries.push(resolve(dirname(serverEntry), './chunks/wasm.mjs'))
4751
wasmEntries.push(resolve(dirname(serverEntry), './chunks/_/wasm.mjs'))
4852
wasmEntries.push(resolve(dirname(serverEntry), './chunks/index_bg.mjs'))
49-
// we need to modify the _routes.json as og image adds to many
50-
const routesPath = resolve(nitro.options.output.publicDir, '_routes.json')
51-
if (existsSync(routesPath)) {
52-
const routes: { version: number, include: string[], exclude: string[] } = await readFile(routesPath)
53-
.then(buffer => JSON.parse(buffer.toString()))
54-
55-
const preSize = routes.exclude.length
56-
routes.exclude = routes.exclude.filter(path => !path.startsWith('/__og-image__/static'))
57-
routes.exclude.push('/__og-image__/static/*')
58-
if (preSize !== routes.exclude.length) {
59-
logger.info(`Optimizing CloudFlare \`_routes.json\` for prerendered OG Images ${gray(`(${100 - Math.round(routes.exclude.length / preSize * 100)}% smaller)`)}`)
60-
}
61-
await writeFile(routesPath, JSON.stringify(routes, void 0, 2))
62-
}
6353
}
6454
const resvgHash = await resolveFilePathSha1('@resvg/resvg-wasm/index_bg.wasm')
6555
const yogaHash = await resolveFilePathSha1('yoga-wasm-web/dist/yoga.wasm')

0 commit comments

Comments
 (0)
Please sign in to comment.