Qwik

Integration guide for Qwik framework with resumable architecture

Installation

Target file: src/root.tsx

Quick Integration

Add the following script tag to your HTML. Replace the data-key value with your actual API key.

Script Tag
<script
          src="https://cdn.antiblocker.io/ab.js"
          data-style="minimal"
          data-key="abk_****"
        /></script>

Complete Example

Here's a complete example showing where to place the script in your src/root.tsx file:

src/root.tsx
import { component$ } from '@builder.io/qwik'
import { QwikCityProvider, RouterOutlet } from '@builder.io/qwik-city'

export default component$(() => {
  return (
    <QwikCityProvider>
      <head>
        <meta charSet="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
      </head>
      <body>
        <RouterOutlet />
        <script
          src="https://cdn.antiblocker.io/ab.js"
          data-style="minimal"
          data-key="abk_****"
        />
      </body>
    </QwikCityProvider>
  )
})

Configuration

Script Attributes

data-keyYour unique AntiBlocker API key (required)
data-styleDisplay style - choose one of 6 variants: "classic", "dark", "educational", "friendly", "minimal", or "urgent"

Implementation Notes

  • Add the script in src/root.tsx in the body section
  • Place it after the <RouterOutlet /> component
  • Fully compatible with Qwik's resumability model and instant loading
  • Works seamlessly with Qwik City routing

Best Practices

Performance

Place script before closing </body> tag. The script loads asynchronously and doesn't block page rendering.

Testing

Test integration in staging environment before deploying to production. Verify script loads correctly.

API Key

Obtain your unique API key from the AntiBlocker dashboard. Never share your key publicly.

Monitoring

Track detection rates and user responses through the AntiBlocker analytics dashboard.