blob: 94d919143de4a24856213320e65a9d3b64d941a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;(function() {
const webpack = require('webpack')
try {
const moment = require("moment");
config.plugins.push(new webpack.ProvidePlugin({
moment: "moment",
"window.moment": "moment"
}));
} catch (e) {
}
})();
|