We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Thanks very much for this project. I've just discovered it while searching about how to implement offline mode in my nextjs application.
Please consider the following items when filing a bug report:
Just made a yarn add next-offline and try to build my application.
yarn add next-offline
Here is my complete next.config.js
//@ts-check const withOffline = require('next-offline'); // eslint-disable-next-line @typescript-eslint/no-var-requires const { composePlugins, withNx } = require('@nx/next'); /** * @type {import('@nx/next/plugins/with-nx').WithNxOptions} **/ const nextConfig = { nx: { svgr: true, }, workboxOpts: { runtimeCaching: [{ handler: 'StaleWhileRevalidate', options: { cacheName: 'assets-cache', expiration: { maxEntries: 5, maxAgeSeconds: 60, }, }, }], } }; const plugins = [ withNx, ]; module.exports = composePlugins(...plugins)(withOffline(nextConfig));
Versions. The installed version is 5.0.5
Screenshots.
Expected.
The build is done properly.
The error in the above screenshoot.
Try on Chrome and Edge (latest version)
Thanks for advance for your help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Thanks very much for this project. I've just discovered it while searching about how to implement offline mode in my nextjs application.
Please consider the following items when filing a bug report:
Just made a
yarn add next-offline
and try to build my application.Here is my complete next.config.js
Versions.
The installed version is 5.0.5
Screenshots.
Expected.
The build is done properly.
The error in the above screenshoot.
Try on Chrome and Edge (latest version)
Thanks for advance for your help.
The text was updated successfully, but these errors were encountered: