From 8fb4d8f347a441d8d351cda9f5056c26b5a59349 Mon Sep 17 00:00:00 2001 From: Alain Nussbaumer Date: Sun, 29 May 2022 18:51:23 +0200 Subject: [PATCH] Removed hard coded ip address. --- web-src/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-src/vite.config.js b/web-src/vite.config.js index d999c028..9411b49c 100644 --- a/web-src/vite.config.js +++ b/web-src/vite.config.js @@ -10,7 +10,7 @@ import vueI18n from '@intlify/vite-plugin-vue-i18n' // VITE_OWNTONE_URL=https://owntone.local:3689; npm run serve // // will connect the web interface with a remote OwnTone server. -const owntoneUrl = process.env.VITE_OWNTONE_URL ?? 'http://192.168.0.9:3689' +const owntoneUrl = process.env.VITE_OWNTONE_URL ?? 'http://localhost:3689' // https://vitejs.dev/config/ export default defineConfig({