10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
![]() |
import { polyfill } from "@astrojs/webapi";
|
||
|
function apply() {
|
||
|
polyfill(globalThis, {
|
||
|
exclude: "window document"
|
||
|
});
|
||
|
}
|
||
|
export {
|
||
|
apply
|
||
|
};
|