From 226e6c9fbe5365abd7d5cd64ceda601da9b7d9cd Mon Sep 17 00:00:00 2001 From: Aaron Date: Sat, 16 Nov 2024 11:33:58 -0600 Subject: [PATCH] docs: Add FAQ around configuring browser startup --- docs/guide/resources/faq.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/guide/resources/faq.md b/docs/guide/resources/faq.md index 593a25083..7945e3ca8 100644 --- a/docs/guide/resources/faq.md +++ b/docs/guide/resources/faq.md @@ -18,6 +18,14 @@ To list the content scripts registered during development, open the service work await chrome.scripting.getRegisteredContentScripts(); ``` +## How do I disable opening the browser automatically during development? + +See https://wxt.dev/guide/essentials/config/browser-startup.html#disable-opening-browser + +## How do I stay logged into a website during development? + +See https://wxt.dev/guide/essentials/config/browser-startup.html#persist-data + ## My component library doesn't work in content scripts! Component libraries place their CSS in the document's `` by default. When using `createShadowRoot`, your UI is isolated from the document's styles because it's inside a ShadowRoot.