A Webpack plugin to automatically handle your app responsiveness:
- Set up and ready
- Web accessible compliant
- Mobile screen auto-adaptation [experimental]
npm i -D webpack-plugin-responsive-app
In your webpack.config.js
file:
const WebpackResponsiveApp = require('webpack-plugin-responsive-app')
module.exports = {
...
plugins: [
...,
// Last plugin on the list
new WebpackResponsiveApp(),
],
};
Check the responsive-app docs page