2020-01-18 00:18:09 +00: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-04-09 17:56:59 +00:00
|
|
|
mdx: { resolveIncludes: path.join(__dirname, 'pages') },
|
2020-01-18 00:18:09 +00:00
|
|
|
})({
|
|
|
|
experimental: {
|
|
|
|
css: true,
|
2020-03-13 22:34:39 +00:00
|
|
|
modern: true,
|
|
|
|
polyfillsOptimization: true,
|
2020-01-18 00:18:09 +00:00
|
|
|
rewrites: () => [
|
|
|
|
{
|
|
|
|
source: '/api/:path*',
|
2020-04-09 17:56:59 +00:00
|
|
|
destination: '/api-docs/:path*',
|
|
|
|
},
|
2020-01-18 00:18:09 +00:00
|
|
|
],
|
|
|
|
redirects: () => [
|
2020-01-18 01:32:35 +00:00
|
|
|
{
|
|
|
|
source: '/intro',
|
|
|
|
destination: '/intro/getting-started',
|
2020-04-09 17:56:59 +00:00
|
|
|
permanent: false,
|
|
|
|
},
|
|
|
|
],
|
2020-01-18 00:18:09 +00:00
|
|
|
},
|
|
|
|
env: {
|
2020-04-09 17:56:59 +00:00
|
|
|
HASHI_ENV: process.env.HASHI_ENV,
|
|
|
|
},
|
2020-01-18 00:18:09 +00:00
|
|
|
})
|