UNPKG

butter-tag

Version:

20 lines (17 loc) 334 B
// webpack.config.js const path = require('path'); module.exports = { entry: './src/index.js', output: { filename: 'dist.js', path: path.resolve(__dirname), library: { // name: 'Butter', type: 'module', }, }, experiments: { outputModule: true, }, mode: 'production' };