From 6170c441d5ca5c1f8769f76a1708c5be5926c9f7 Mon Sep 17 00:00:00 2001 From: Neealdon3 <138321129+neealdon3@users.noreply.github.com> Date: Sun, 17 Sep 2023 13:41:25 -0700 Subject: [PATCH] Update uv.config.js --- public/uv/uv.config.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/public/uv/uv.config.js b/public/uv/uv.config.js index 210c249..eca9627 100644 --- a/public/uv/uv.config.js +++ b/public/uv/uv.config.js @@ -1,12 +1,12 @@ -/*global Ultraviolet*/ +// This file overwrites the stock UV config.js + self.__uv$config = { - prefix: '/service/', - bare: '/bare/', + prefix: "/uv/service/", + bare: "/bare/", encodeUrl: Ultraviolet.codec.xor.encode, decodeUrl: Ultraviolet.codec.xor.decode, - handler: '/uv/uv.handler.js', - client: '/uv/uv.client.js', - bundle: '/uv/uv.bundle.js', - config: '/uv/uv.config.js', - sw: '/uv/uv.sw.js', -}; + handler: "/uv/uv.handler.js", + bundle: "/uv/uv.bundle.js", + config: "/uv/uv.config.js", + sw: "/uv/uv.sw.js", + };