4

Meteor は、開発サーバーで個別の CSS ファイルと JS ファイルを使用し、運用サーバーでそれらを組み合わせて縮小します。少なくとも、展開前に結合されたファイルが正常に機能するかどうかを確認するために、開発サーバー (localhost) 上のすべての JS/CSS を強制的に結合および縮小する方法はありますか? ありがとう。

4

2 に答える 2

19
> meteor run --production

meteor runproductionフラグがあります:

Usage: meteor run [options]
Options:
  --port, -p    Port to listen on. NOTE: Also uses port N+1 and N+2.         [default: 3000]
  --production  Run in production mode. Minify and bundle CSS and JS files.  [boolean]
于 2013-03-02T17:25:06.297 に答える
0

Presently, no. You can meteor deploy --debug to leave the files unminified in production, but there is no 'combine but don't minify' command within meteor at this time.

Per the docs:

You can deploy in debug mode by passing --debug. This will leave your source code readable by your favorite in-browser debugger, just like it is in local development mode.

If you simply want to combine multiple javascript files into one, here are some ideas.

于 2013-02-03T04:58:51.323 に答える