Files
textbee/web/next.config.js
2025-10-13 06:28:45 +03:00

29 lines
475 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
i18n: {
locales: ['en-US'],
defaultLocale: 'en-US',
},
output: 'standalone',
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: true,
},
{
source: '/android',
destination: 'https://dl.textbee.dev',
permanent: false,
},
]
},
}
module.exports = nextConfig;