- Moved usecases into internal/usecase - Renamed internal/utils to internal/helpers for better naming semantics - Clarified separation between domain model, usecases, adapters, and web/API
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import type { UserConfig } from 'vite';
|
|
|
|
const config: UserConfig = {
|
|
server: {
|
|
hmr: {
|
|
port: 10000
|
|
}
|
|
},
|
|
|
|
plugins: [sveltekit()]
|
|
};
|
|
|
|
export default config;
|