gatsby-plugin-babel-exclude
v2.0.0
Published
A Gatsby plugin to exclude modules from babel-loader.
Downloads
179
Maintainers
Readme
gatsby-plugin-babel-exclude
A Gatsby plugin to exclude modules from babel-loader.
Install
npm install gatsby-plugin-babel-exclude
How to use
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-babel-exclude",
options: {
exclude: /someregex/,
},
},
],
};