diff --git a/apps/docs/next.config.js b/apps/docs/next.config.js index ee8485ce..2d62e7d6 100644 --- a/apps/docs/next.config.js +++ b/apps/docs/next.config.js @@ -1,6 +1,7 @@ -const withNextra = require('nextra')({ - theme: 'nextra-theme-docs', - themeConfig: './theme.config.js', +/* eslint-disable @typescript-eslint/no-var-requires */ +const withNextra = require("nextra")({ + theme: "nextra-theme-docs", + themeConfig: "./theme.config.js", unstable_staticImage: true, -}) -module.exports = withNextra() +}); +module.exports = withNextra(); diff --git a/apps/web/playwright.config.ts b/apps/web/playwright.config.ts index c28a9cf7..b1342fbe 100644 --- a/apps/web/playwright.config.ts +++ b/apps/web/playwright.config.ts @@ -25,7 +25,7 @@ const config: PlaywrightTestConfig = { globalSetup: require.resolve("./playwright/lib/globalSetup"), outputDir: "playwright/results", webServer: { - command: "yarn start", + command: "yarn start --scope=@calcom/web", port: 3000, timeout: 60_000, reuseExistingServer: !process.env.CI,