SIGN IN SIGN UP
devhubapp / devhub UNCLAIMED

TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them

0 0 1 TypeScript
const withCSS = require('@zeit/next-css')
const withTM = require('next-transpile-modules')(['@devhub/core'], {
resolveSymlinks: true,
2019-08-13 16:42:59 -03:00
})
module.exports = withCSS(
withTM({
env: {
STRIPE_PUBLIC_KEY:
process.env.NODE_ENV === 'production'
? 'pk_live_SRFXNC2vJzVcCNwE7fXVmCM900PLxWhQ6D'
: 'pk_test_PvG6Vvwe8z0SdsxY7fWtvAPW00X0ooU3XF',
PADDLE_VENDOR_ID: 33705,
},
}),
)