dashboard/extra-webpack.config.ts
2023-06-13 20:10:15 +04:00

11 lines
236 B
TypeScript

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