Files
warframe-center/app/next.config.js
Anatoly 12a482324c
All checks were successful
continuous-integration/drone/push Build is passing
pm2 file and redirect fix
2022-03-19 03:11:52 +03:00

31 lines
471 B
JavaScript

const withPlugins = require('next-compose-plugins')
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true
// webpack: (config, { webpack }) => {
// return config
// },
}
const redirects = {
async redirects () {
return [
{
source: '/',
destination: '/home',
permanent: true
}
]
}
}
module.exports = withPlugins(
[
[redirects]
],
nextConfig
)
module.exports = nextConfig