mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-03-20 22:36:03 +02:00
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
|
import { deepmerge } from "deepmerge-ts";
|
||
|
import { config as default_config } from "./wdio.conf.js";
|
||
|
|
||
|
// have main config file as default but overwrite how the code is served
|
||
|
export const config = deepmerge(
|
||
|
default_config,
|
||
|
{
|
||
|
// use the mdbook served content
|
||
|
baseUrl: "http://localhost:3000",
|
||
|
// clean services
|
||
|
services: [],
|
||
|
},
|
||
|
{ clone: false }
|
||
|
);
|