Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robbestad/universal-jsx-loader
Webpack loader for universal-jsx
https://github.com/robbestad/universal-jsx-loader
Last synced: 20 days ago
JSON representation
Webpack loader for universal-jsx
- Host: GitHub
- URL: https://github.com/robbestad/universal-jsx-loader
- Owner: robbestad
- Created: 2015-08-11T06:25:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-11T07:12:19.000Z (over 9 years ago)
- Last Synced: 2024-11-16T20:17:52.884Z (about 1 month ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack loader for universal-jsx
Add the loader to your Webpack config, like so:
```
module: {
preLoaders: [
{ test: /\.js$/, loaders: ['universal-jsx-loader'], exclude: /node_modules/ }
],
loaders: [
[etc...]
]
}
```
This will convert the JSX syntax before any other processing is done.