Add vite react plugin

This commit is contained in:
Igor Katson 2023-12-07 22:51:31 +00:00
parent 9fd5ff6427
commit 2b9129221d
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
4 changed files with 1363 additions and 50 deletions

View file

@ -1,13 +1,13 @@
import { defineConfig } from 'vite';
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
// plugins: [react()],
server: {
port: 3031
},
build: {
manifest: true
}
plugins: [react()],
server: {
port: 3031,
},
build: {
manifest: true,
},
});