Files
wallet.fullstack.cash/gatsby-config.js
T

28 lines
754 B
JavaScript
Raw Normal View History

2022-02-05 16:46:25 -08:00
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
plugins: [
'fullstack-gatsby-theme-bch-wallet-v1',
2022-02-05 16:46:25 -08:00
// 'bch-wallet-plugin-postoffice',
// {
// resolve: 'gatsby-plugin-compile-es6-packages',
// options: {
// modules: ['bch-wallet-plugin-postoffice']
// }
// },
// require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep')
2022-02-19 08:16:14 -08:00
'fullstack-gatsby-plugin-bch-sweep',
'fullstack-gatsby-plugin-bch-create-token'
2022-02-14 06:50:31 -08:00
// 'gatsby-plugin-bch-create-token'
2022-02-05 16:46:25 -08:00
],
// https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs
flags: {
DEV_SSR: false
}
}