This rollup plugin automatically reloads the web page when rollup is running in watch mode and any changes are made on bundles. It works on any server as well as on the local file system.
npm i --save-dev rollup-plugin-auto-reload
yarn add --dev rollup-plugin-auto-reload
Option | Values | Default |
---|---|---|
host |
host name or IP address as string | localhost |
port |
any number between 0 - 65,535 | 0 |
The host can be any legal host name or IP address. If you run your server and client on the same machine, you can keep the default value localhost
.
The port can be any legal port number between 0 - 65,535. If the port is set to 0
, a random available port will be used.
- Install the plugin:
npm i --save-dev rollup-plugin-auto-reload
yarn add --dev rollup-plugin-auto-reload
- Add the plugin in your
rollup.config.js
orrollup.config.ts
:
import { autoReload } from "rollup-plugin-auto-reload"
export default {
input: "src/index.js",
output: {
file: "dist/index.js",
format: "iife",
},
plugins: [
autoReload({ /* place your options here */ })
],
}
You can find a fully working minimal example project in the demo folder.