@@ -7,7 +7,6 @@ import { readFile, writeFile } from 'node:fs/promises'
7
7
import { resolvePath , useNuxt } from '@nuxt/kit'
8
8
import { dirname } from 'pathe'
9
9
import { applyNitroPresetCompatibility , getPresetNitroPresetCompatibility , resolveNitroPreset } from '../compatibility'
10
- import { gray , logger } from '../logger'
11
10
12
11
// we need all of the runtime dependencies when using build
13
12
export async function setupBuildHandler ( config : ModuleOptions , resolve : Resolver [ 'resolve' ] , nuxt : Nuxt = useNuxt ( ) ) {
@@ -29,8 +28,14 @@ export async function setupBuildHandler(config: ModuleOptions, resolve: Resolver
29
28
// HACK: we need to patch the compiled output to fix the wasm resolutions using esmImport
30
29
// TODO replace this once upstream is fixed
31
30
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
+ }
32
38
nitro . hooks . hook ( 'compiled' , async ( _nitro ) => {
33
- const target = resolveNitroPreset ( _nitro . options )
34
39
const compatibility = getPresetNitroPresetCompatibility ( target )
35
40
if ( compatibility . wasm ?. esmImport !== true )
36
41
return
@@ -39,27 +44,12 @@ export async function setupBuildHandler(config: ModuleOptions, resolve: Resolver
39
44
? configuredEntry
40
45
: 'index.mjs' )
41
46
const wasmEntries = [ serverEntry ]
42
- const isCloudflarePagesOrModule = target === 'cloudflare-pages' || target === 'cloudflare-module'
43
47
if ( isCloudflarePagesOrModule ) {
44
48
// this is especially hacky, basically need to add all paths the wasm import can exist on
45
49
// TODO maybe implement https://github.com/pi0/nuxt-shiki/blob/50e80fb6454de561e667630b4e410d2f7b5f2d35/src/module.ts#L103-L128
46
50
wasmEntries . push ( resolve ( dirname ( serverEntry ) , './chunks/wasm.mjs' ) )
47
51
wasmEntries . push ( resolve ( dirname ( serverEntry ) , './chunks/_/wasm.mjs' ) )
48
52
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
- }
63
53
}
64
54
const resvgHash = await resolveFilePathSha1 ( '@resvg/resvg-wasm/index_bg.wasm' )
65
55
const yogaHash = await resolveFilePathSha1 ( 'yoga-wasm-web/dist/yoga.wasm' )
0 commit comments