summaryrefslogtreecommitdiff
path: root/node_modules/wrangler/templates/no-op-worker.js
blob: 13aeeaaa732e96505da856fcf499e582af095851 (plain)
1
2
3
4
5
6
7
8
9
10
export default {
	fetch() {
		return new Response("Not found", {
			status: 404,
			headers: {
				"Content-Type": "text/html",
			},
		});
	},
};