1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00
OpenSTF/res/common/status/webpack.config.js
2014-06-04 18:45:11 +09:00

12 lines
361 B
JavaScript

var pathutil = require('./../../../lib/util/pathutil')
var options = require('./../../../webpack.config.js')
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'
}
})