Removed hard coded ip address.

This commit is contained in:
Alain Nussbaumer 2022-05-29 18:51:23 +02:00
parent b788273e4c
commit 8fb4d8f347

View File

@ -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({