@qlik/browserslist-config
v3.0.0
Published
Qlik supported browsers
Downloads
9,863
Readme
@qlik/browserslist-config
A browserslist config we can use across the org.
Installation and usage
npm install -D @qlik/browserslist-config
# or
yarn add -D @qlik/browserslist-config
Then use it in your package.json
"browserslist": [
"extends @qlik/browserslist-config"
]
Analyze your Browserslist Config
npx browserslist
Webpack
When your project has a browserslist config, then webpack will use it. Read more here.
Outcome
When a user hits code using incompatible browsers, the code will break and a console error saying it threw an exception and a stack of the error can be found.
Consideration
you can detect supported browsers on client-side by applying browserslist-useragent-regexp and show user friendly information accordingly.
import supportedBrowsers from "./supportedBrowsers.js";
if (!supportedBrowsers.test(navigator.userAgent)) {
// alert("Your browser is not supported.");
}