stacker.news/next.config.js

13 lines
220 B
JavaScript
Raw Normal View History

2021-07-15 20:49:13 +00:00
const { withPlausibleProxy } = require('next-plausible')
module.exports = withPlausibleProxy()({
2021-07-15 23:06:21 +00:00
async rewrites () {
return [
{
source: '/faq',
destination: '/items/349'
}
]
}
2021-07-15 20:49:13 +00:00
})