fix: embed rewrites post dotted usernames (#12087)

This commit is contained in:
Omar López 2023-10-25 12:33:22 -07:00 committed by GitHub
parent f9ad99e572
commit 158da51a5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -226,6 +226,14 @@ const nextConfig = {
},
async rewrites() {
const beforeFiles = [
{
/**
* Needed due to the introduction of dotted usernames
* @see https://github.com/calcom/cal.com/pull/11706
*/
source: "/embed.js",
destination: "/embed/embed.js",
},
{
source: "/login",
destination: "/auth/login",