We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4d0c8 commit 31c5bf7Copy full SHA for 31c5bf7
1 file changed
docs/bin/serve.ts
@@ -14,7 +14,7 @@ import 'reflect-metadata'
14
import { Ignitor } from '@adonisjs/core'
15
import { readFile } from 'node:fs/promises'
16
import { defineConfig } from '@adonisjs/vite'
17
-import { ApplicationService } from '@adonisjs/core/types'
+import type { ApplicationService } from '@adonisjs/core/types'
18
import { defineConfig as defineHttpConfig } from '@adonisjs/core/http'
19
20
/**
@@ -50,7 +50,7 @@ async function defineRoutes(app: ApplicationService) {
50
result[from] = to
51
return result
52
},
53
- {} as Record<string, string>
+ {} as Record<string, string>,
54
)
55
56
router.get('*', async ({ request, response }) => {
0 commit comments