mirror of
https://github.com/jellyfin/jellyfin-chromecast.git
synced 2024-11-23 14:09:58 +00:00
18 lines
305 B
TypeScript
18 lines
305 B
TypeScript
/* eslint-disable sort-keys */
|
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
root: 'src',
|
|
base: './',
|
|
build: {
|
|
outDir: '../dist',
|
|
emptyOutDir: true,
|
|
target: 'es2015',
|
|
assetsInlineLimit: 0
|
|
},
|
|
server: {
|
|
port: 9000
|
|
}
|
|
});
|