We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22aee2 commit f1e7e68Copy full SHA for f1e7e68
apps/self-host-mcp/netlify.toml
@@ -1,6 +1,6 @@
1
[build]
2
base = "apps/self-host-mcp"
3
-command = "pnpm install --frozen-lockfile && pnpm -w run build"
+command = "pnpm install --frozen-lockfile"
4
publish = "."
5
6
[[redirects]]
@@ -10,4 +10,3 @@ status = 200
10
11
[functions]
12
included_files = ["manifests/**"]
13
-external_node_modules = ["@storybook/mcp"]
apps/self-host-mcp/tsconfig.json
@@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
+ // Prevent inherited workspace aliases from resolving @storybook/mcp to source during Netlify function bundling.
+ "paths": {},
"outDir": "./dist"
7
},
8
"include": ["**/*.ts"],
0 commit comments