generator-kube-microservice-node
Version:
A k8s micro-service generator with deployment, service, Dockerfile. Built with express/mongo/redis
17 lines (15 loc) • 339 B
JavaScript
const path = require('path');
const webpack = require('webpack');
module.exports = {
target: 'node',
entry: {
app: ['./node_modules/saslprep/index.js', './dist/index.js'],
},
output: {
path: path.resolve(__dirname, './build'),
filename: 'build.js',
},
plugins: [
new webpack.IgnorePlugin(/^hiredis$/),
],
};