Results 4 issues of Mayur Borse

Aleph.js v0.3.0-alpha.33 deno 1.10.2 (WSL) I'm getting no error in terminal but browser shows following: ![image](https://user-images.githubusercontent.com/47341981/119068006-efbf7380-ba00-11eb-8adc-6d56582fed9d.png)

✘ bug

## Background I want to try the module but unable to go through the docs as they are not in english. ## Proposal Is it possible to have english language...

I'm getting following error on text selection. What can be the issue? ![image](https://user-images.githubusercontent.com/47341981/135859442-e722fe30-d1f2-4e46-9e71-9bcef7a5ff6e.png)

Code: ``` import { Application } from "https://deno.land/x/oak/mod.ts"; import { responseTimeHeader } from "https://deno.land/x/oak_middleware/observability/response_time_header.ts"; const app = new Application(); app.use(responseTimeHeader); app.use((ctx: any, next: any) => { ctx.response.body = "Hello Oak!";...