@scicad/device-ui-plugin
Version:
UI Plugin to view device, routes, and electrodes
21 lines (19 loc) • 395 B
JavaScript
var webConfig = {
entry: './src/device-ui-plugin.js',
output: {
filename: './build/device-ui-plugin.web.js',
library: 'DeviceUI',
libraryTarget: 'var'
},
module:{
loaders: [
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' }
]
},
resolve: {
alias: {
"jquery": "jquery"
}
}
};
module.exports = webConfig;