Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tu4mo/gatsby-plugin-babel-exclude

Gatsby plugin to exclude modules from babel-loader
https://github.com/tu4mo/gatsby-plugin-babel-exclude

gatsby gatsby-plugin

Last synced: 22 days ago
JSON representation

Gatsby plugin to exclude modules from babel-loader

Awesome Lists containing this project

README

        

# gatsby-plugin-babel-exclude

A Gatsby plugin to exclude modules from babel-loader.

## Install

`npm install gatsby-plugin-babel-exclude`

## How to use

```javascript
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-babel-exclude",
options: {
exclude: /someregex/,
},
},
],
};
```