mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/umami/script.js',
|
|
destination: `https://eu.umami.is/script.js`,
|
|
},
|
|
{
|
|
source: '/umami/api/send',
|
|
destination: `https://eu.umami.is/api/send`,
|
|
},
|
|
]
|
|
},
|
|
reactStrictMode: false,
|
|
output: 'standalone',
|
|
}
|
|
|
|
module.exports = nextConfig
|