Added putputs for client and server

This commit is contained in:
euvl
2017-06-20 03:39:15 +01:00
parent 44cb64babc
commit dcf3291623
9 changed files with 74 additions and 1060 deletions

View File

@@ -0,0 +1,11 @@
const path = require('path')
const webpack = require('webpack')
const merge = require('webpack-merge')
const base = require('./webpack.base.config')
module.exports = merge(base, {
target: 'node',
output: {
filename: 'ssr.index.js'
}
})