(server)
| 24 | } |
| 25 | }, |
| 26 | configureServer(server) { |
| 27 | server.environments.ssr.hot.on( |
| 28 | 'custom:remote-add', |
| 29 | ({ a, b }, client) => { |
| 30 | client.send('custom:remote-add-result', { result: a + b }) |
| 31 | }, |
| 32 | ) |
| 33 | }, |
| 34 | }, |
| 35 | virtualPlugin(), |
| 36 | transformCountPlugin(), |
nothing calls this directly
no test coverage detected