slate/next.config.js

8 lines
143 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 = {
future: { webpack5: true },
};
2021-04-22 18:00:25 +03:00
module.exports = withOffline(nextConfig);