diff options
Diffstat (limited to '')
-rw-r--r-- | webpackBaseConfig.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webpackBaseConfig.js b/webpackBaseConfig.js index df48e658..bfabc6d9 100644 --- a/webpackBaseConfig.js +++ b/webpackBaseConfig.js @@ -28,7 +28,6 @@ module.exports = { locale: path.join(__dirname, 'public/js/locale.js'), vendor: [ "expose?$!expose?jQuery!jquery", - "jquery-textcomplete", "jquery-mousewheel", "jquery-scrollspy/jquery-scrollspy", "jquery-ui/ui/widgets/resizable", @@ -46,6 +45,7 @@ module.exports = { path.join(__dirname, 'public/vendor/codemirror/codemirror.min.js'), path.join(__dirname, 'public/vendor/select2/select2.min.js'), path.join(__dirname, 'public/vendor/inlineAttachment/inline-attachment.js'), + path.join(__dirname, 'public/vendor/jquery-textcomplete/jquery-textcomplete.js'), path.join(__dirname, 'public/vendor/codemirror-spell-checker/spell-checker.min.js'), path.join(__dirname, 'public/vendor/inlineAttachment/codemirror.inline-attachment.js'), path.join(__dirname, 'public/vendor/ot/ot.min.js') @@ -100,6 +100,7 @@ module.exports = { include: [ path.join(__dirname, 'public/vendor/codemirror/codemirror.min.js'), path.join(__dirname, 'public/vendor/inlineAttachment/inline-attachment.js'), + path.join(__dirname, 'public/vendor/jquery-textcomplete/jquery-textcomplete.js'), path.join(__dirname, 'public/vendor/select2/select2.min.js'), path.join(__dirname, 'public/vendor/inlineAttachment/codemirror.inline-attachment.js'), path.join(__dirname, 'public/vendor/codemirror-spell-checker/spell-checker.min.js'), |