bpms_site/.svn/pristine/83/83b047a0b80ca59323cdf47c8027400f131779f9.svn-base
2025-11-02 16:38:49 +03:30

12 lines
372 B
Plaintext

/**
* Polyfills `FormData` and `Blob` in the Node.js runtime.
*/ if (!global.FormData) {
const { FormData } = require("next/dist/compiled/@edge-runtime/ponyfill");
global.FormData = FormData;
}
if (!global.Blob) {
const { Blob } = require("next/dist/compiled/@edge-runtime/ponyfill");
global.Blob = Blob;
}
//# sourceMappingURL=node-polyfill-form.js.map