pprofweb/pkg/goroutineinstance/site/esbuild.config.js
a 6680bbc3fa
Some checks failed
commit-tag / commit-tag-image (push) Failing after 40s
wip
2024-10-29 01:45:23 -05:00

12 lines
227 B
JavaScript

import { build } from 'esbuild'
build({
entryPoints: ['src/index.tsx'],
bundle: true,
minify: true,
sourcemap: true,
target: ['chrome58', 'firefox57', 'safari11', 'edge18'],
outfile: 'bundle.js',
plugins: [],
})