slate/next.config.js

13 lines
296 B
JavaScript
Raw Normal View History

2021-04-22 18:00:25 +03:00
const withOffline = require("next-offline");
2021-05-26 01:59:50 +03:00
const nextConfig = {
webpack5: true,
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
2021-05-26 01:59:50 +03:00
};
2021-04-22 18:00:25 +03:00
module.exports = withOffline(nextConfig);