mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 14:00:50 +00:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
// 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.web.js';
|
|
cfg.target = 'web';
|
|
return cfg;
|
|
};
|