ente/next.config.js
2020-09-20 02:50:10 +05:30

16 lines
441 B
JavaScript

const WorkerPlugin = require('worker-plugin');
module.exports = {
target: 'serverless',
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
if (!isServer) {
config.plugins.push(
new WorkerPlugin({
// use "self" as the global object when receiving hot updates.
globalObject: 'self',
})
)
}
return config
},
};