mirror of
https://github.com/valitydev/dashboard.git
synced 2024-11-06 02:25:23 +00:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { IgnorePlugin, Configuration } from 'webpack';
|
|
|
|
export default {
|
|
plugins: [
|
|
new IgnorePlugin({
|
|
resourceRegExp: /^\.\/locale$/,
|
|
contextRegExp: /moment$/,
|
|
}),
|
|
],
|
|
} as Configuration;
|