Skip to content

Commit 565a60f

Browse files
committed
fix: fix webpack.config entry point
1 parent ba9fd8a commit 565a60f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

webpack.config.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
module.exports = {
2-
entry: './js/entries/all.js',
2+
entry: './js/entries/foundation.js',
33
output: {
4-
path: './_build/assets/js/',
5-
filename: 'foundation.js'
4+
path: './_build/assets/js/',
5+
filename: 'foundation.js',
6+
libraryTarget: 'umd'
67
},
78
externals: {
89
jquery: 'jQuery'

0 commit comments

Comments
 (0)