english-back/webpack.config.js
hyoseung 6c5feccebf
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
feat: webpack bundling - include node_modules in dist
2026-05-12 14:47:57 +09:00

9 lines
140 B
JavaScript

module.exports = (options) => ({
...options,
externals: [],
output: {
...options.output,
libraryTarget: 'commonjs2',
},
});