Commit a5fdbb0e authored by JC Brand's avatar JC Brand

Avoid loading all the moment locales

parent 01c3d35d
This diff is collapsed.
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
'use strict' 'use strict'
const minimist = require('minimist'); const minimist = require('minimist');
const path = require('path'); const path = require('path');
const webpack = require('webpack');
const config = { const config = {
entry: path.resolve(__dirname, 'src/converse.js'), entry: path.resolve(__dirname, 'src/converse.js'),
...@@ -13,6 +14,9 @@ const config = { ...@@ -13,6 +14,9 @@ const config = {
filename: 'converse.js' filename: 'converse.js'
}, },
devtool: 'source-map', devtool: 'source-map',
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
],
module: { module: {
rules: [ rules: [
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment