1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/common/status/webpack.config.js
2014-08-21 15:09:15 +09:00

12 lines
366 B
JavaScript

var pathutil = require('./../../../lib/util/pathutil')
var options = require('./../../../webpack.config').webpack
var _ = require('lodash')
module.exports = _.defaults(options, {
entry: pathutil.resource('common/status/scripts/entry.js'),
output: {
path: pathutil.resource('build'),
publicPath: '/static/build/',
filename: 'bundle-status.js'
}
})