First steps in integration of IVIS.
This commit is contained in:
parent
bf626993f4
commit
dce5ba7464
35 changed files with 10098 additions and 91 deletions
16
mvis/client/webpack.config.js
Normal file
16
mvis/client/webpack.config.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
const webpack = require('webpack');
|
||||
const path = require('path');
|
||||
|
||||
const webpackConf = require('../ivis-core/client/webpack.config');
|
||||
|
||||
webpackConf.resolve.modules = ['node_modules', '../ivis-core/client/node_modules', './src/bimlib'];
|
||||
webpackConf.entry = {
|
||||
'index-trusted': ['babel-polyfill', './src/root-trusted.js'],
|
||||
'index-sandbox': ['babel-polyfill', '../ivis-core/client/src/root-sandbox.js']
|
||||
};
|
||||
webpackConf.output = {
|
||||
filename: '[name].js',
|
||||
path: path.resolve(__dirname, 'dist')
|
||||
};
|
||||
|
||||
module.exports = webpackConf;
|
Loading…
Add table
Add a link
Reference in a new issue