neuron / vite.config.js
kiryha-krysko's picture
init neuron
da70209
raw
history blame contribute delete
185 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
}
})