2019-07-18 20:47:08 -03:00
|
|
|
const withCSS = require('@zeit/next-css')
|
|
|
|
|
|
2020-12-08 16:50:20 -03:00
|
|
|
const withTM = require('next-transpile-modules')(['@devhub/core'], {
|
|
|
|
|
resolveSymlinks: true,
|
2019-08-13 16:42:59 -03:00
|
|
|
})
|
2020-12-08 16:50:20 -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,
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
)
|