synapse-link / vite.config.js
dixiebone13-a11y
Synapse Link HEBB-9 - Hebbian learning neural sim
4ad4378
raw
history blame contribute delete
190 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 7860,
},
});