You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
380 B

var path = require('path')
var alias = require('./alias')
module.exports = {
entry: path.resolve(__dirname, '../test/ssr/ssr.spec.js'),
output: {
path: path.resolve(__dirname, '../test/ssr'),
filename: 'ssr.spec.bundle.js'
},
resolve: {
alias: alias
},
module: {
loaders: [
{ test: /\.js/, loader: 'babel', exclude: /node_modules/ }
]
}
}