/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45const Koa = require('koa');6const serve = require('koa-static');7const mount = require('koa-mount');89const app = new Koa();1011app.use(serve('.'));12app.use(mount('/static', serve('../../out')));1314app.listen(3000);15console.log('👉 http://localhost:3000');161718