theatre/packages/playground/devEnv/servePlayground.ts
2021-09-18 21:43:29 +02:00

30 lines
662 B
TypeScript

import path from 'path'
import {definedGlobals} from '../../../theatre/devEnv/buildUtils'
const playgroundDir = path.join(__dirname, '..')
const port = 8080
require('esbuild')
.serve(
{
port,
servedir: path.join(playgroundDir, 'src'),
},
{
entryPoints: [path.join(playgroundDir, 'src/index.tsx')],
target: ['firefox88'],
loader: {
'.png': 'file',
'.glb': 'file',
'.gltf': 'file',
'.svg': 'dataurl',
},
bundle: true,
sourcemap: true,
define: definedGlobals,
},
)
.then((server: unknown) => {
console.log('serving', 'http://localhost:' + port)
})