mirror of
https://github.com/fullstack-cash/wallet.fullstack.cash.git
synced 2026-09-22 01:02:06 -07:00
20 lines
385 B
JavaScript
20 lines
385 B
JavaScript
/**
|
|
* Configure your Gatsby site with this file.
|
|
*
|
|
* See: https://www.gatsbyjs.org/docs/gatsby-config/
|
|
*/
|
|
|
|
module.exports = {
|
|
/* Your site config here */
|
|
plugins: [
|
|
'gatsby-ipfs-web-wallet',
|
|
'bch-wallet-plugin-postoffice',
|
|
{
|
|
resolve: 'gatsby-plugin-compile-es6-packages',
|
|
options: {
|
|
modules: ['bch-wallet-plugin-postoffice']
|
|
}
|
|
}
|
|
]
|
|
}
|