summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/edge-functions/fixtures/dynimport/prod.js
blob: 3e7d6e64d448b414faefcc248c5fcfb9bb6944f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import handler from './.netlify/edge-functions/entry.js';
import { Server } from 'https://deno.land/std@0.132.0/http/server.ts';

const _server = new Server({
	port: 8085,
	hostname: '0.0.0.0',
	handler,
});

_server.listenAndServe();
console.error(`Server running on port 8085`);