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