From fdec2ce17bf7cad77a04e8eef42a26104b6a05b8 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Wed, 22 Jun 2022 01:22:07 +0200 Subject: [PATCH] feat(ui): add support for relative links In case the root path is not "/". Related: https://github.com/socketio/socket.io-admin-ui/issues/41 --- ui/vue.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/vue.config.js b/ui/vue.config.js index d5bd20c..629c058 100644 --- a/ui/vue.config.js +++ b/ui/vue.config.js @@ -1,4 +1,7 @@ module.exports = { + + publicPath: "./", + configureWebpack: { node: false, // remove buffer polyfill },