CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
webpack.config.js16 linesDownload Raw Back to webpack
1'use strict'2 3const path = require('node:path')4 5module.exports = {6  entry: { success: './src/index.js', failPlugin: './src/fail-plugin-version.js' },7  target: 'node',8  output: {9    path: path.resolve(__dirname, 'dist'),10    filename: '[name].js',11    library: {12      type: 'commonjs2'13    }14  }15}16