From: Haoqun Jiang Date: Thu, 28 Dec 2023 15:18:18 +0000 (+0800) Subject: fix: import `process` instead of reading from the global variable X-Git-Tag: v3.9.2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f280b26fe938080967c332d88fa6eaba70dab870;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: import `process` instead of reading from the global variable Fixes https://github.com/vuejs/create-vue/issues/195#issuecomment-1421967970 In the long run we need to add https://github.com/playwright-community/eslint-plugin-playwright/ to the playwright setup too. --- diff --git a/template/config/playwright/playwright.config.js b/template/config/playwright/playwright.config.js index ad20dabc..92075cc1 100644 --- a/template/config/playwright/playwright.config.js +++ b/template/config/playwright/playwright.config.js @@ -1,3 +1,4 @@ +import process from 'node:process' import { defineConfig, devices } from '@playwright/test' /**