mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config
|
|
export default defineConfig({
|
|
server: {
|
|
port: 5174,
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['@vjs/html'],
|
|
},
|
|
});
|