From df3a2d3f7bfa89939f2ec0df90c4f7f95fef87cb Mon Sep 17 00:00:00 2001 From: Andreas Kluge Svendsrud Date: Wed, 11 Sep 2024 18:44:42 +0200 Subject: [PATCH] refactor/Updated vue.config.js --- vue.config.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/vue.config.js b/vue.config.js index 7680d6d..991ede2 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,6 +1,3 @@ -import { defineConfig } from '@vue/cli-service' - -export default defineConfig({ - transpileDependencies: true, - publicPath: process.env.NODE_ENV === 'production' ? '/my-calculator/' : '/' -}) +module.exports = { + publicPath: process.env.NODE_ENV === "production" ? "/my-calculator/" : "/", +}; \ No newline at end of file