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