2

有一种方法可以在 app.json 中指定,我在其中包含 js 文件,而不是缩小 1 个 js 文件,例如

"js": [
    {
        "path": "sdk/sencha-touch.js"
    },
    {
        "path": "sdk/myjs.js",
        "compress": false
    },
...


"compress": false --  ofc doesn work , there is something to specify not to compress or minify that js file ?

谢谢你的帮助!

4

1 回答 1

1

据我发现没有为什么要指定不压缩,我如何解决的方法是:

  1. 在“资源”文件夹中创建一个“js”文件夹并将我的 js 文件放在该文件夹中
  2. 像这样更新app.json文件(在我们构建生产应用程序时不要松开“js”文件夹):

    "resources": [
        "resources/js",
    ]
    
  3. 将 index html 中的文件作为常规脚本包含在内

于 2012-11-05T21:57:25.507 回答