mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import { defineConfig } from 'nitro';
|
|
|
|
export default defineConfig({
|
|
modules: ['workflow/nitro'],
|
|
routes: {
|
|
'/**': './src/index.ts',
|
|
},
|
|
plugins: ['plugins/start-pg-world.ts'],
|
|
});
|