mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-21 12:49:53 +08:00
* refactor: replace art template with jsx * fix: tsx files * fix: renderToString import * fix: hono html raw import * feat: remove art
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['./lib/index.ts'],
|
|
minify: true,
|
|
shims: true,
|
|
clean: true,
|
|
copy: ['lib/assets'],
|
|
});
|