1
0
mirror of https://github.com/fluencelabs/marine.git synced 2025-04-08 08:28:18 +00:00
marine/web-runtime/npm-package/webpack.config.node.js

14 lines
308 B
JavaScript
Raw Normal View History

// Generated using webpack-cli https://github.com/webpack/webpack-cli
const config = require('./webpack.config.js');
module.exports = () => {
const cfg = config({
NODE: true,
WEB: false,
});
cfg.output.filename = 'marine-js.node.js';
cfg.target = 'node';
return cfg;
};