You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
420 B

  1. /**
  2. * @prettier
  3. */
  4. // The standard dev config doesn't allow overriding contentBase via the CLI,
  5. // which we do in the npm scripts for e2e tests.
  6. //
  7. // This variant avoids contentBase in the config, so the CLI values take hold.
  8. import devConfig from "./dev.babel"
  9. // set the common e2e port 3230
  10. devConfig.devServer.port = 3230
  11. // unset contentBase
  12. delete devConfig.devServer.contentBase
  13. export default devConfig