diff options
author | Zhidao HONG <z.hong@f5.com> | 2025-04-22 10:56:27 +0800 |
---|---|---|
committer | hongzhidao <hongzhidao@gmail.com> | 2025-05-09 01:14:21 +0800 |
commit | b7f76b71f4a1511cd9d954e6da3b0da4c9de40fb (patch) | |
tree | 7e87027c23f8d0e6424fee3900b1432433f59377 /nginx/ngx_http_js_module.c | |
parent | a1e3f15f0a580f7b9d465a5b2ed2287a1705dc84 (diff) | |
download | njs-b7f76b71f4a1511cd9d954e6da3b0da4c9de40fb.tar.gz njs-b7f76b71f4a1511cd9d954e6da3b0da4c9de40fb.zip |
Fetch: QuickJS support.
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index 3ac95478..40bb83a5 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -1134,6 +1134,9 @@ static JSClassDef ngx_http_qjs_headers_out_class = { qjs_module_t *njs_http_qjs_addon_modules[] = { &ngx_qjs_ngx_module, &ngx_qjs_ngx_shared_dict_module, +#ifdef NJS_HAVE_QUICKJS + &ngx_qjs_ngx_fetch_module, +#endif /* * Shared addons should be in the same order and the same positions * in all nginx modules. |