From 3bfdc5c7559b792fb4175c6b5936d9b7a48cdadb Mon Sep 17 00:00:00 2001 From: evsamson <148810415+evsamson@users.noreply.github.com> Date: Mon, 22 Apr 2024 14:12:30 +0200 Subject: [PATCH] FIX: Chromium window-size example format (#630) Co-authored-by: smsnbv --- docs/guide/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/development.md b/docs/guide/development.md index dd7a0742..0ccdd499 100644 --- a/docs/guide/development.md +++ b/docs/guide/development.md @@ -89,7 +89,7 @@ import { defineRunnerConfig } from 'wxt'; export default defineRunnerConfig({ startUrls: ['https://google.com', 'https://duckduckgo.com'], chromiumProfile: '/path/to/profile/to/use', - chromiumArgs: ['--window-size=400x300'], + chromiumArgs: ['--window-size=400,300'], }); ```