From c87bbdf55c1ee3a1a42062223bc8a33c9f4c2a39 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Mon, 11 Aug 2025 18:00:39 +0200 Subject: [PATCH] [web] disable watching of services/web/public/ in cypress (#27796) GitOrigin-RevId: 8866bdf85bbe0480fb50e9a7b35a0c0f8928d06e --- services/web/cypress/support/webpack.cypress.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/web/cypress/support/webpack.cypress.ts b/services/web/cypress/support/webpack.cypress.ts index eb8884c5e7..e70d303b21 100644 --- a/services/web/cypress/support/webpack.cypress.ts +++ b/services/web/cypress/support/webpack.cypress.ts @@ -10,7 +10,10 @@ const buildConfig = () => { workerPublicPath: '/__cypress/src/', }, devServer: { - static: path.join(__dirname, '../../public'), + static: { + directory: path.join(__dirname, '../../public'), + watch: false, + }, port: 3200, }, stats: 'none',