mirror of
https://github.com/openstf/stf
synced 2025-10-05 19:42:01 +02:00
12 lines
361 B
JavaScript
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'
|
|
}
|
|
})
|