diff --git a/package.json b/package.json index 17e4b84..013c3b3 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "pinia": "^2.2.2", "toastify-js": "^1.12.0", "vite": "^5.4.2", + "vite-plugin-vue-devtools": "^7.3.9", "vue": "^3.4.38", "vue-material-design-icons": "^5.3.0", "vue-router": "^4.4.3" @@ -38,7 +39,6 @@ "@nextcloud/stylelint-config": "^3.0.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-pinia": "^0.4.1", - "eslint-plugin-prettier": "^5.2.1", - "vite-plugin-vue-devtools": "^7.3.9" + "eslint-plugin-prettier": "^5.2.1" } } diff --git a/vite.config.mjs b/vite.config.mjs index 10e86d1..2fe3b4d 100644 --- a/vite.config.mjs +++ b/vite.config.mjs @@ -14,8 +14,8 @@ const config = defineConfig(({ mode }) => ({ sourcemap: mode !== 'production', }, define: { - __VUE_PROD_DEVTOOLS__: mode !== 'production' - }, + __VUE_PROD_DEVTOOLS__: mode !== 'production', + }, plugins: [vueDevTools()], }))