You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
448 B

# bun 编译配置:将 dist 下的所有资源一并内嵌到可执行文件中
# 注意:命令行中的 --compile/--outfile 参数依然可以覆盖这里的设置
[compile]
# 入口文件(与 package.json 的 bundle:exe 一致)
entrypoint = "dist/booststap.js"
# 需要内嵌到可执行文件中的静态资源(包含服务端/客户端产物)
assets = [
"dist/**"
]
# 输出可执行文件路径
outfile = "dist/koa-ssr.exe"