mirror of
https://github.com/covidpass-org/covidpass.git
synced 2025-02-16 11:41:19 +01:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
const {i18n} = require('./next-i18next.config');
|
|
|
|
module.exports = {
|
|
i18n,
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/pass/note',
|
|
destination: '/pass'
|
|
}
|
|
];
|
|
}
|
|
}; |