mirror of
https://github.com/langgenius/dify.git
synced 2025-12-30 13:01:30 -05:00
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
import { readFileSync, writeFileSync } from 'node:fs'
|
|
// https://www.npmjs.com/package/uglify-js
|
|
import UglifyJS from 'uglify-js'
|
|
|
|
writeFileSync('public/embed.min.js', UglifyJS.minify({
|
|
'embed.js': readFileSync('public/embed.js', 'utf8'),
|
|
}).code, 'utf8')
|