File size: 290 Bytes
bee6636 |
1 2 3 4 5 6 7 8 9 10 11 |
import { rewriteCss } from "../../shared/rewriters/css";
import { ScramjetClient } from "../client";
export default function (client: ScramjetClient, _self: Self) {
client.Proxy("FontFace", {
construct(ctx) {
ctx.args[1] = rewriteCss(ctx.args[1], client.meta);
},
});
}
|