Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Mar 11, 2024
1 parent 7b4d0c8 commit 31c5bf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/bin/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import 'reflect-metadata'
import { Ignitor } from '@adonisjs/core'
import { readFile } from 'node:fs/promises'
import { defineConfig } from '@adonisjs/vite'
import { ApplicationService } from '@adonisjs/core/types'
import type { ApplicationService } from '@adonisjs/core/types'
import { defineConfig as defineHttpConfig } from '@adonisjs/core/http'

/**
Expand Down Expand Up @@ -50,7 +50,7 @@ async function defineRoutes(app: ApplicationService) {
result[from] = to
return result
},
{} as Record<string, string>
{} as Record<string, string>,
)

router.get('*', async ({ request, response }) => {
Expand Down

0 comments on commit 31c5bf7

Please sign in to comment.