17 lines
288 B
JavaScript
17 lines
288 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
redirects: [
|
|
{
|
|
source: '/',
|
|
destination: '/home',
|
|
permanent: true
|
|
}
|
|
]
|
|
// webpack: (config, { webpack }) => {
|
|
// return config
|
|
// },
|
|
}
|
|
|
|
module.exports = nextConfig
|