mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-24 15:56:22 +00:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
import { defineConfig } from 'vite';
|
|
import fs from 'vite-plugin-fs';
|
|
|
|
export default defineConfig({
|
|
plugins: [/*fs()*/],
|
|
server: { host: '0.0.0.0', port: 8000 },
|
|
clearScreen: false,
|
|
})
|