Files
clawsec/vite.config.ts
David Abutbul d3c703aea6 ClawSec init
2026-02-05 21:58:23 +02:00

20 lines
351 B
TypeScript

import path from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig(() => {
return {
base: '/',
server: {
port: 3000,
host: '0.0.0.0',
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
},
},
};
});