feat: add axiom

pull/9078/head
Agusti Fernandez Pardo 2022-07-08 02:00:00 +02:00
parent a5976ec5c6
commit 599dccdcce
1 changed files with 29 additions and 26 deletions

View File

@ -13,8 +13,10 @@ const withTM = require("next-transpile-modules")([
"@calcom/embed-core", "@calcom/embed-core",
"@calcom/embed-snippet", "@calcom/embed-snippet",
]); ]);
const { withAxiom } = require("next-axiom");
module.exports = withTM({ module.exports = withAxiom(
withTM({
async rewrites() { async rewrites() {
return { return {
afterFiles: [ afterFiles: [
@ -39,4 +41,5 @@ module.exports = withTM({
], ],
}; };
}, },
}); })
);