2021-12-29 06:26:19 +00:00
|
|
|
const __is_prod__ = process.env.NODE_ENV === 'production';
|
|
|
|
require('esbuild').build({
|
|
|
|
entryPoints: ['src/index.tsx'],
|
|
|
|
chunkNames: '[name]-[hash]',
|
|
|
|
bundle: true,
|
|
|
|
minify: __is_prod__,
|
|
|
|
outdir: 'build',
|
|
|
|
splitting: true,
|
|
|
|
format: 'esm',
|
|
|
|
watch: !__is_prod__,
|
2022-01-08 10:16:39 +00:00
|
|
|
logLevel: 'info',
|
2021-12-29 06:26:19 +00:00
|
|
|
});
|