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