SmartPagerankSearch / frontend /vite.config.js
GitHub Action
Sync from GitHub Actions (Clean Commit)
7f22d3c
raw
history blame contribute delete
240 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: true
},
build: {
outDir: 'dist',
sourcemap: true
}
});