AUDITPRO / vite.config.ts
MMOON's picture
Upload 19 files
8c81161 verified
raw
history blame contribute delete
332 Bytes
import path from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
server: {
port: 3000,
host: '0.0.0.0',
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
}
}
});