├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── bin └── server.js ├── examples ├── hello-pwa-now │ ├── .gitignore │ ├── .npmrc │ ├── next.config.js │ ├── now.json │ ├── package.json │ ├── pages │ │ └── index.js │ └── readme.md ├── hello-pwa │ ├── .gitignore │ ├── .npmrc │ ├── next.config.js │ ├── package.json │ ├── pages │ │ └── index.js │ └── readme.md └── hnpwa │ ├── .gitignore │ ├── .npmrc │ ├── next.config.js │ ├── package.json │ ├── pages │ └── index.js │ └── readme.md ├── index.js ├── license ├── package.json └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /bin/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/bin/server.js -------------------------------------------------------------------------------- /examples/hello-pwa-now/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | static/workbox 3 | out -------------------------------------------------------------------------------- /examples/hello-pwa-now/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /examples/hello-pwa-now/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa-now/next.config.js -------------------------------------------------------------------------------- /examples/hello-pwa-now/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa-now/now.json -------------------------------------------------------------------------------- /examples/hello-pwa-now/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa-now/package.json -------------------------------------------------------------------------------- /examples/hello-pwa-now/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa-now/pages/index.js -------------------------------------------------------------------------------- /examples/hello-pwa-now/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa-now/readme.md -------------------------------------------------------------------------------- /examples/hello-pwa/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | static/workbox 3 | out -------------------------------------------------------------------------------- /examples/hello-pwa/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /examples/hello-pwa/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa/next.config.js -------------------------------------------------------------------------------- /examples/hello-pwa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa/package.json -------------------------------------------------------------------------------- /examples/hello-pwa/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa/pages/index.js -------------------------------------------------------------------------------- /examples/hello-pwa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hello-pwa/readme.md -------------------------------------------------------------------------------- /examples/hnpwa/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | static/workbox 3 | out -------------------------------------------------------------------------------- /examples/hnpwa/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /examples/hnpwa/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hnpwa/next.config.js -------------------------------------------------------------------------------- /examples/hnpwa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hnpwa/package.json -------------------------------------------------------------------------------- /examples/hnpwa/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hnpwa/pages/index.js -------------------------------------------------------------------------------- /examples/hnpwa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/examples/hnpwa/readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragingwind/next-workbox-webpack-plugin/HEAD/readme.md --------------------------------------------------------------------------------