packer-cn/website/next.config.js

26 lines
760 B
JavaScript
Raw Normal View History

2020-03-18 18:46:47 -04:00
const withHashicorp = require('@hashicorp/nextjs-scripts')
const path = require('path')
module.exports = withHashicorp({
defaultLayout: true,
transpileModules: ['is-absolute-url', '@hashicorp/react-mega-nav'],
2020-03-24 20:03:49 -04:00
mdx: { resolveIncludes: path.join(__dirname, 'pages/partials') },
2020-03-18 18:46:47 -04:00
})({
experimental: {
modern: true,
rewrites: () => [
{
source: '/api/:path*',
2020-03-24 20:03:49 -04:00
destination: '/api-docs/:path*',
},
],
2020-03-18 18:46:47 -04:00
},
2020-05-29 17:14:29 -04:00
// Note: These are meant to be public, it's not a mistake that they are here
2020-03-18 18:46:47 -04:00
env: {
2020-03-24 20:03:49 -04:00
HASHI_ENV: process.env.HASHI_ENV,
SEGMENT_WRITE_KEY: 'AjXdfmTTk1I9q9dfyePuDFHBrz1tCO3l',
BUGSNAG_CLIENT_KEY: 'de0b822b269aa57b620efd8927e03744',
BUGSNAG_SERVER_KEY: 'b6c57b27a37e531a5de94f065dd98bc0',
2020-03-24 20:03:49 -04:00
},
2020-03-18 18:46:47 -04:00
})