vont
Version:
A full-stack framework combining Koa and React with file-based routing
24 lines (20 loc) • 487 B
text/typescript
import { defineConfig } from 'vont';
import tailwindcss from '@tailwindcss/vite';
import react from '@vitejs/plugin-react';
/**
* Vont Framework Configuration - Minimal Example
*
* This is a minimal configuration that only overrides what's necessary.
* Vont will use sensible defaults for all other options.
*/
export default defineConfig({
// Server settings
port: 3000,
host: '0.0.0.0',
viteConfig: {
plugins: [
tailwindcss(),
react(),
],
},
});