summaryrefslogtreecommitdiff
path: root/examples/container-with-vitest/src/pages/api.ts
blob: c30def5bbae3008aea13a5632da52bde9f69ec46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export function GET() {
	const json = {
		foo: 'bar',
		number: 1,
	};
	return new Response(JSON.stringify(json), {
		headers: {
			'content-type': 'application/json',
		},
	});
}