- Router: client side route handling with client side rendering - Toast: rought Toast handling for better UX and messaging - Auth: single point of truth for the Logged in user This commit doesnt not include the openapi generated code
18 lines
303 B
JavaScript
18 lines
303 B
JavaScript
import { defineConfig } from 'vite';
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
tailwindcss(),
|
|
tsconfigPaths(),
|
|
],
|
|
server: {
|
|
hmr: {
|
|
protocol: 'ws',
|
|
host: 'localhost',
|
|
port: '5137',
|
|
|
|
}
|
|
}
|
|
});
|