2023-04-04 00:47:41 +00:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
import fs from 'vite-plugin-fs';
|
2023-03-28 18:54:52 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-04-10 21:09:49 +00:00
|
|
|
plugins: [/*fs()*/],
|
2023-04-10 21:18:35 +00:00
|
|
|
server: { host: '0.0.0.0', port: 8000 },
|
2023-03-28 18:54:52 +00:00
|
|
|
clearScreen: false,
|
|
|
|
})
|