Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tu4mo/gatsby-plugin-babel-exclude
- Owner: tu4mo
- Created: 2021-06-15T19:05:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-08T13:00:47.000Z (almost 3 years ago)
- Last Synced: 2024-11-19T08:51:19.027Z (3 months ago)
- Topics: gatsby, gatsby-plugin
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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/,
},
},
],
};
```