mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
|
const fs = require('node:fs')
|
||
|
// https://www.npmjs.com/package/uglify-js
|
||
|
const UglifyJS = require('uglify-js')
|
||
|
|
||
|
const { readFileSync, writeFileSync } = fs
|
||
|
|
||
|
writeFileSync('public/embed.min.js', UglifyJS.minify({
|
||
|
'embed.js': readFileSync('public/embed.js', 'utf8'),
|
||
|
}).code, 'utf8')
|