react-app-rewire-yaml

1.1.0 • Public • Published

react-app-rewire-yaml

Dependency Status Dev Dependency Status Version Month Download License

Add yaml-loader together with yaml-lint-loader and json-loader to your create-react-app via react-app-rewired.

Installation

yarn add --dev react-app-rewire-yaml

OR

npm install --save-dev react-app-rewire-yaml

Usage

In your react-app-rewired configuration:

/* config-overrides.js */
 
const rewireYAML = require('react-app-rewire-yaml');
 
module.exports = function override(config, env) {
    // ...
    config = rewireYAML(config, env);
    // ...
    return config;
}

In your React application:

import data from './data.yaml'
 
const App = () => (
  <div>
    {data.key}
  </div>
);

Package Sidebar

Install

npm i react-app-rewire-yaml

Weekly Downloads

884

Version

1.1.0

License

MIT

Unpacked Size

4.92 kB

Total Files

5

Last publish

Collaborators

  • hsz