# vuloom.config.ts

> 

This file configures the project runtime and toolchain integration.

```ts
import { defineConfig } from "vuloom/vite";

export default defineConfig({
  dev: {
    port: 3000
  },
  server: {
    middleware: ['server-trace']
  },
  vite: {
    build: {
      sourcemap: true
    }
  }
})
```

Top-level keys currently include:

- `root`
- `app`
- `server`
- `dev`
- `vite`
- `plugin`

Use `app/app.config.ts` for app-level concerns. Use `vuloom.config.ts` for framework, development, and build concerns.
