11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { Elysia, file } from 'elysia'
|
|
|
|
/**
|
|
* Example of handle single static file
|
|
*
|
|
* @see https://github.com/elysiajs/elysia-static
|
|
*/
|
|
new Elysia()
|
|
.get('/tako', file('./example/takodachi.png'))
|
|
.listen(3000)
|