mirror of
https://github.com/logseq/logseq.git
synced 2026-04-25 22:54:48 +00:00
16 lines
252 B
TypeScript
16 lines
252 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
target: 'es6',
|
|
platform: 'browser',
|
|
format: ['cjs'],
|
|
entry: ['src/index.ts'],
|
|
clean: true,
|
|
loader: {
|
|
'.png': 'base64',
|
|
},
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
},
|
|
})
|