UNPKG

doauthor

Version:

A client for DoAuth: a fast, lean and reliable authentication server based on verifiable credentials standard

14 lines (12 loc) 290 B
const path = require('path'); module.exports = (env) => { return { mode: env.development ? 'development' : 'production', entry: './src/doauthor.js', output: { filename: 'doauthor.js', library: 'DoAuthor', path: path.resolve(__dirname, 'dist') }, } };