Files
2017-03-04 15:44:36 -05:00

15 lines
295 B
JavaScript

const { root } = require('./helpers');
const { AotPlugin } = require('@ngtools/webpack');
/**
* This is a server config which should be merged on top of common config
*/
module.exports = {
entry: root('./src/main.server.ts'),
output: {
filename: 'server.js'
},
target: 'node'
};