mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-06-01 18:21:24 +00:00
1. Move marine-related part into FJS repo (DXJ184) 2. Move towards component-oriented architecture (DXJ183) 3. Different JS Client distros for node.js and web (DXJ185)
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
// Generated using webpack-cli https://github.com/webpack/webpack-cli
|
|
|
|
const config = require('./webpack.config.js');
|
|
|
|
module.exports = () => {
|
|
const cfg = config();
|
|
cfg.output.filename = 'marine-js.web.js';
|
|
cfg.target = 'web';
|
|
return cfg;
|
|
};
|