rofrischmann/alveron

View on GitHub
website/next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
var withBundleAnalyzer = require('@next/bundle-analyzer')({
  enabled: process.env.ANALYZE === 'true',
})

const config = {
  async redirects() {
    return [
      {
        source: '/',
        destination: '/intro/overview',
        permanent: true,
      },
    ]
  },
}

module.exports = withBundleAnalyzer(config)