From 2e2bd8d9e4dec09d5f9b78d408c397a34e614b45 Mon Sep 17 00:00:00 2001 From: Pablo Pettinari Date: Thu, 8 Jan 2026 11:56:59 +0100 Subject: [PATCH] Fix Netlify functions mock storage path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add src/data-layer/mocks to included_files so mock data is available in Netlify functions. The previous path src/data/mocks was incorrect. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 66367090c2d..f27a3445674 100644 --- a/netlify.toml +++ b/netlify.toml @@ -39,4 +39,4 @@ path = "en/developers/tutorials/creating-a-wagmi-ui-for-your-contract/" [functions] - included_files = ["i18n.config.json", "src/intl/**/*", "src/data/mocks/**/*"] + included_files = ["i18n.config.json", "src/intl/**/*", "src/data/mocks/**/*", "src/data-layer/mocks/**/*"]