You've already forked ng-universal-demo
mirror of
https://github.com/encounter/ng-universal-demo.git
synced 2026-03-30 11:31:16 -07:00
15 lines
295 B
JavaScript
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'
|
|
};
|