From cdef2b7ed7879a5220eaf73aa3931dc52b1d3701 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Tue, 28 Mar 2023 22:13:44 +0200 Subject: [PATCH] fix vuejs config --- vue.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index 910e297..bef4973 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,4 +1,5 @@ const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ - transpileDependencies: true + transpileDependencies: true, + publicPath: process.env.NODE_ENV === 'production' ? '/Tone_WebClient/' : '/' })