Skip to content

Commit

Permalink
Update webpack.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dotoritos-kim committed Jan 30, 2024
1 parent 937be7d commit 28e5a0e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default {
filename: 'bundle.js',
publicPath: '/',
chunkFormat: 'module',
library: 'DxfParser',
library: {
name: 'DxfParser',
type: 'umd',
export: 'DxfParser'
},
globalObject: 'typeof self !== \'undefined\' ? self : this',
libraryTarget: 'commonjs2'
},
experiments: {
Expand Down

0 comments on commit 28e5a0e

Please sign in to comment.