From ff128601d97341ec04ef07d9f2fb55a45324ded4 Mon Sep 17 00:00:00 2001 From: p0x games <151543501+p0xx@users.noreply.github.com> Date: Mon, 27 Nov 2023 19:56:50 -0500 Subject: [PATCH] Create uv.config.js --- .uv/uv.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .uv/uv.config.js diff --git a/.uv/uv.config.js b/.uv/uv.config.js new file mode 100644 index 0000000..f01a66b --- /dev/null +++ b/.uv/uv.config.js @@ -0,0 +1,10 @@ +self.__uv$config = { + prefix: '/service/', + bare: '/bare/', + encodeUrl: Ultraviolet.codec.xor.encode, + decodeUrl: Ultraviolet.codec.xor.decode, + handler: '/uv/uv.handler.js', + bundle: '/uv/uv.bundle.js', + config: '/uv/uv.config.js', + sw: '/uv/uv.sw.js', +};