dashboard/extra-webpack.config.ts

11 lines
236 B
TypeScript
Raw Normal View History

import { IgnorePlugin, Configuration } from 'webpack';
export default {
plugins: [
new IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
}),
],
} as Configuration;