mirror of
https://github.com/vernu/textbee.git
synced 2026-02-19 23:26:14 -05:00
29 lines
475 B
JavaScript
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;
|