Nguyen Doanh Thai

Results 2 comments of Nguyen Doanh Thai

> any updates on that? I have simillar issue,,, > > ``` > @Entity() > @Tree("closure-table", { > closureTableName: "place", > ancestorColumnName: (column) => "ancestor_id", > descendantColumnName: (column) => "descendant_id"...

You can use [redirects](https://nextjs.org/docs/pages/api-reference/next-config-js/redirects#wildcard-path-matching) in your `next.config.js` ``` /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, async redirects() { return [ { source: '/uploads/:path*', destination: `http://localhost:1337/uploads/:path*`, permanent: true,...