astro-browser-sync
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

astro-browser-sync

Add BrowserSync in your Astro Project.

Usage

Manual Install,

npm i astro-browser-sync -D

If you want to manage BrowserSync or override default behavior of this integration, you can pass a browserSyncOptions object with your BrowserSync options in it :

// astro.config.mjs
import { defineConfig } from "astro/config";
import broswerSync from 'astro-browser-sync'

export default defineConfig({
    //....
   integrations: [
      // Default Config
      browserSync({
        mode: 'verbose',
        browserSyncOptions: {
          port: 4000,
          open: true,
          ui: {
            port: 4001,
          },
          notify: true,
        }
      }),
   ]
})

Changelog

See CHANGELOG.md for a history of changes to this integration.

Package Sidebar

Install

npm i astro-browser-sync

Weekly Downloads

7

Version

1.3.0

License

GPL-3.0

Unpacked Size

5.44 kB

Total Files

4

Last publish

Collaborators

  • jakichen