konowebcodecs/src/worker/node/defaultOptions.js
2019-10-24 07:47:11 +08:00

11 lines
267 B
JavaScript

const path = require('path');
const defaultOptions = require('../../constants/defaultOptions');
/*
* Default options for node worker
*/
module.exports = {
...defaultOptions,
workerPath: path.join(__dirname, '..', '..', 'worker-script', 'node', 'index.js'),
};