@spotlightjs/astro
v2.1.11
Published
Add spotlight to your Astro toolbar, for better debugging.
Downloads
5,238
Maintainers
Readme
Spotlight for Astro
This is package is specifically built to add Spotlight to your Astro application with one command.
Installation
npx astro add @sentry/astro @spotlightjs/astro
Usage
// astro.config.mjs
import { defineConfig } from 'astro/config';
import sentry from '@sentry/astro';
import spotlightjs from '@spotlightjs/astro';
// https://astro.build/config
export default defineConfig({
// Order matters here! `sentry()` should come before `spotlightjs()`
integrations: [sentry(), spotlightjs()],
});