1
1
mirror of https://github.com/Redocly/redoc.git synced 2025-03-02 00:50:33 +03:00
redoc/config/webpack-utils.ts
Oprysk Vyacheslav 35418b1569
chore: migrate from babel to esbuild loader ()
* chore: migrate from babel to esbuild loader

* fix cypress tests
2022-01-25 15:50:28 +02:00

6 lines
171 B
TypeScript

import * as webpack from 'webpack';
export function webpackIgnore(regexp) {
return new webpack.NormalModuleReplacementPlugin(regexp, require.resolve('lodash.noop'));
}