aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
blob: 07bbc7f7d0f1d0c792909f08ae3cde295f0d65ee (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
	async rewrites() {
		return [
			{
				source: '/privacy',
				destination: '/blog/privacy'
			}
		];
	}
}