vite-plugin-supported-browserslist
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

vite-plugin-supported-browserslist

NPM Version

This is a small Vite plugin (~1.2kB) that permits the use of .browserslistrc file (or any other configuration method) to generate a list of supported browsers to be checked at runtime.

The intention is that the plugin can be used to show a custom message/banner to users using browsers you consider undesirable or unsupported.

This package uses browserslist-useragent-regexp internally and all of its options are supported.

Setup

Install this package alongside the latest version of browserslist:

npm i browserslist -D
npm i vite-plugin-supported-browserslist

In your vite.config.ts|js install the plugin:

import supportedBrowser from 'vite-plugin-supported-browserslist'

export default defineConfig({
  plugins: [
    // All the same options from browserslist-useragent-regexp are available here
    supportedBrowser({ allowHigherVersions: true }),
  ],
})

You can configure the browserslist as part of the plugin options or use a traditional .browserslistrc.

To check the current browser at runtime, import isSupportedBrowser from vite-plugin-supported-browserslist/web:

<script setup lang="ts">
import { isSupportedBrowser } from 'vite-plugin-supported-browserslist/web';

const isSupported = isSupportedBrowser();
</script>

<template>
  <div class="alert alert-bad" v-if="!isSupported">
    This website may not work correctly with an outdated browser. Please update as soon as possible.
  </div>
  <div class="alert alert-good" v-else>
    Yay! Your browser is supported!
  </div>
</template>

Package Sidebar

Install

npm i vite-plugin-supported-browserslist

Weekly Downloads

9

Version

1.0.1

License

Apache-2.0

Unpacked Size

16.1 kB

Total Files

9

Last publish

Collaborators

  • hawxy