Upgraded to vite

This commit is contained in:
Dunemask 2022-07-06 21:24:54 +00:00
parent d46be86f68
commit 70d8644ead
8 changed files with 541 additions and 24739 deletions

14
vite.config.js Normal file
View file

@ -0,0 +1,14 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default () => {
return defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
hmr: {
port: 443,
}
}
});
}