Vite config changes

This commit is contained in:
Flashfyre 2023-04-10 17:09:49 -04:00
parent 7b216ce4c1
commit caebbe182a
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import { defineConfig } from 'vite';
import fs from 'vite-plugin-fs';
export default defineConfig({
plugins: [fs()],
server: { host: '0.0.0.0', port: 8000 },
plugins: [/*fs()*/],
server: { host: 'localhost', port: 8000 },
clearScreen: false,
})