cabana/craco.config.js

19 lines
296 B
JavaScript
Raw Normal View History

const WorkerLoaderPlugin = require("craco-worker-loader");
module.exports = function({ env }) {
return {
plugins: [
{
plugin: WorkerLoaderPlugin
}
],
webpack: {
configure: {
output: {
globalObject: "this"
}
}
}
};
};