kelvinpraises

Results 2 comments of kelvinpraises

Using middleware breaks [Client-side Caching of Rendered Server Components](https://beta.nextjs.org/docs/routing/linking-and-navigating#client-side-caching-of-rendered-server-components).

Basically need cors to work https://www.npmjs.com/package/cors https://github.com/editor-js/link/issues/13#issuecomment-739124948 ```js import * as cheerio from "cheerio"; import express from "express"; var cors = require("cors"); const app = express(); app.use(cors()); // cheerio is...