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

https://github.com/pradel/craco-blockstack

A craco plugin to use Blockstack with create-react-app
https://github.com/pradel/craco-blockstack

blockstack craco create-react-app

Last synced: 9 months ago
JSON representation

A craco plugin to use Blockstack with create-react-app

Awesome Lists containing this project

README

          

# craco-blockstack

A [craco](https://github.com/sharegate/craco) plugin to use Blockstack with create-react-app.

## Install

Make sure you have [craco](https://github.com/sharegate/craco) installed before continuing.

`npm install --save craco-blockstack`

`yarn add --dev craco-blockstack`

## Usage

Simply enable the plugin in your `craco.config.js` file.

```javascript
// craco.config.js
const CracoBlockstackPlugin = require("craco-blockstack");

module.exports = {
plugins: [{ plugin: CracoBlockstackPlugin }]
};
```