owntone-server/web-src/vite.config.js

41 lines
967 B
JavaScript
Raw Normal View History

2022-02-19 00:18:01 -05:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// Support for setting the OwnTone server URL as env var VITE_OWNTONE_URL
// in development mode.
// E. g. start the DEV server with
//
// 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://localhost:3689'
2022-02-19 00:18:01 -05:00
// https://vitejs.dev/config/
export default defineConfig({
resolve: { alias: { '@': '/src' } },
plugins: [vue()],
build: {
outDir: '../htdocs',
rollupOptions: {
output: {
entryFileNames: `assets/[name].js`,
chunkFileNames: `assets/[name].js`,
assetFileNames: `assets/[name].[ext]`
}
}
},
server: {
proxy: {
'/api': {
target: owntoneUrl
2022-02-19 00:18:01 -05:00
},
'/artwork': {
target: owntoneUrl
2022-02-19 00:18:01 -05:00
},
'/stream.mp3': {
target: owntoneUrl
2022-02-19 00:18:01 -05:00
}
}
}
})