@vercel/og 0.6.6 → 0.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.node.js +3 -3
- package/dist/index.node.js.map +1 -1
- package/package.json +1 -1
package/dist/index.node.js
CHANGED
|
@@ -18925,9 +18925,9 @@ function assertValue(v2, errorMessage) {
|
|
|
18925
18925
|
|
|
18926
18926
|
// src/index.node.ts
|
|
18927
18927
|
var satori = El.default || El;
|
|
18928
|
-
var fontData = fs.readFileSync(fileURLToPath(new URL("
|
|
18929
|
-
var yoga_wasm = fs.readFileSync(fileURLToPath(new URL("
|
|
18930
|
-
var resvg_wasm = fs.readFileSync(fileURLToPath(new URL("
|
|
18928
|
+
var fontData = fs.readFileSync(fileURLToPath(new URL("./noto-sans-v27-latin-regular.ttf", import.meta.url)));
|
|
18929
|
+
var yoga_wasm = fs.readFileSync(fileURLToPath(new URL("./yoga.wasm", import.meta.url)));
|
|
18930
|
+
var resvg_wasm = fs.readFileSync(fileURLToPath(new URL("./resvg.wasm", import.meta.url)));
|
|
18931
18931
|
var initializedResvg = initWasm(resvg_wasm);
|
|
18932
18932
|
var initializedYoga = initYoga(yoga_wasm).then((yoga2) => Ll(yoga2));
|
|
18933
18933
|
var ImageResponse = class extends Response {
|