cm-pwa-react
v1.2.0
Published
Generate files to create a PWA application
Downloads
35
Readme
CM PWA React
Internal library for managing updates as a progressive web application in React projects. You can check the npm page.
Installation
npm install --save-dev cm-pwa-react
Usage
Added as a plugin in Vite config file:
import {defineConfig} from 'vite';
import react from '@vitejs/plugin-react';
import {CmPwaReact} from 'cm-pwa-react';
export default defineConfig({
plugins: [
react(),
CmPwaReact()
]
});
Release history & changelog
See the Releases page for a list of all releases, including changes.
Help / Support
If you run into any issues, please email me at [email protected], or you can use the contact form in my page.
For bug reports, please open an issue on GitHub.
Contributing
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -am 'Added some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create a new pull request.