15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
/**
|
|
* Vite configuration for the DMS frontend application.
|
|
*/
|
|
import { defineConfig } from 'vite';
|
|
|
|
/**
|
|
* Exports frontend build and dev-server settings.
|
|
*/
|
|
export default defineConfig({
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 5173,
|
|
},
|
|
});
|