diff --git a/browserbase/smithery.config.js b/browserbase/smithery.config.js new file mode 100644 index 0000000..e2dfe2e --- /dev/null +++ b/browserbase/smithery.config.js @@ -0,0 +1,10 @@ +/** + * @type {import('esbuild').BuildOptions} + */ +export default { + esbuild: { + // Mark playwright-core as external to prevent bundling + // This avoids the relative path resolution issue in Docker + external: ["playwright-core"], + } +}