[web] disable watching of services/web/public/ in cypress (#27796)

GitOrigin-RevId: 8866bdf85bbe0480fb50e9a7b35a0c0f8928d06e
This commit is contained in:
Jakob Ackermann
2025-08-11 18:00:39 +02:00
committed by Copybot
parent 6a7821f7bb
commit c87bbdf55c

View File

@@ -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',