+
80
-

nodejs在pkg打包包含静态资源变成exe后如何运行时读取?

nodejs在pkg打包包含静态资源变成exe后如何运行时读取?


网友回复

+
0
-

首先ncc

ncc build index.js -o dist

然后在dist目录中放入里的静态资源

800_auto

800_auto

修改package.json

{
  "name": "test",
  "version": "1.0.0",
  "description": " ",
  "main": "test.js",
  "bin": "dist/index.js",
  "pkg": {
    "assets": [
      "dist/**/*"
    ],
    "targe...

点击查看剩余70%

我知道答案,我要回答