UNPKG
@soyvolon/docsify-file-name-replace
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Docsify plugin to modify certain paths to replace strings.
gitlab.com/Soyvolon/file-name-replace
@soyvolon/docsify-file-name-replace
/
playwright.config.ts
16 lines
(12 loc)
•
259 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;