dashboard-delight / vite.config.js
praven2's picture
Create a app using vite react js and show dashboard screen
e01e648 verified
raw
history blame contribute delete
184 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: true,
},
});