slate/next.config.js
Aminejv 2c601066a6 feat(web-workers):
-  add useWorker to interact with web workers declaratively

- update next to 11.1.2 to support web-workers

- update next config to ignore eslint errors during build
2021-09-27 10:09:36 +01:00

13 lines
296 B
JavaScript

const withOffline = require("next-offline");
const nextConfig = {
webpack5: true,
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
};
module.exports = withOffline(nextConfig);