Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 314 B view raw
1// eslint-disable-next-line 2const { startDevServer } = require('@cypress/vite-dev-server'); 3// eslint-disable-next-line 4const path = require('path'); 5 6/** 7 * @type {Cypress.PluginConfig} 8 */ 9module.exports = (on, _config) => { 10 on('dev-server:start', options => 11 startDevServer({ 12 options, 13 }) 14 ); 15};