UNPKG

@soyvolon/docsify-enhanced-command-line-blocks

Version:

Docsify plugin to enhance the usage of the Command Line plugin from Prism code highlighting.

16 lines (12 loc) 259 B
import { PlaywrightTestConfig } from "@playwright/test"; const baseURL = "http://localhost:5173"; const config: PlaywrightTestConfig = { use: { baseURL, }, webServer: { command: "npm run dev", url: baseURL, }, }; export default config;