rqbit/crates/librqbit/webui/vite.config.ts

14 lines
185 B
TypeScript
Raw Normal View History

2023-11-21 02:11:10 +00:00
import { defineConfig } from 'vite';
// https://vitejs.dev/config/
export default defineConfig({
2023-11-22 19:30:23 +00:00
// plugins: [react()],
2023-11-21 02:11:10 +00:00
server: {
port: 3031
},
build: {
manifest: true
2023-11-21 02:11:10 +00:00
}
2023-11-21 02:11:10 +00:00
});