mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-06 21:10:33 +03:00
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import * as webpack from 'webpack';
|
|
|
|
export function webpackIgnore(regexp) {
|
|
return new webpack.NormalModuleReplacementPlugin(regexp, require.resolve('lodash.noop'));
|
|
}
|