pprofweb/pkg/goroutineinstance/site/esbuild.config.js

12 lines
227 B
JavaScript
Raw Normal View History

2024-10-29 06:45:23 +00:00
import { build } from 'esbuild'
build({
entryPoints: ['src/index.tsx'],
bundle: true,
minify: true,
sourcemap: true,
target: ['chrome58', 'firefox57', 'safari11', 'edge18'],
outfile: 'bundle.js',
plugins: [],
})