Files
chartdb/vite.config.ts
Guy Ben-Aharon 90de3a4ea0 fix lint
2024-08-25 18:26:41 +03:00

19 lines
381 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
host: true,
strictPort: true,
port: 5173,
},
});