Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.42 KB

FAQ.md

File metadata and controls

27 lines (16 loc) · 1.42 KB

Frequently asked questions

How do I change directory with sources?

Change it in your gulpfile. See Configuration guide for details.

My project is big. Will it affect my build time?

This is common issue for developers who use Browserify. Phở uses watchify that recompiles only changed modules (not whole bundle).

Time consuming operations like minification of JavaScript code and sprite generation are enabled only in production mode.

Why Phở doesn't run any server in development mode?

There are 3 ways to run your application:

  1. Directly from file system open dist/index.html
  2. Launching a web server from the dist directory - just run python -m SimpleHTTPServer and open page from shown port (usually http://localhost:8000/).
  3. Using backend platform of your choice and serving pages from it. Reloading pages will still work.

Can I write my own Gulp tasks or customize Phở's tasks?

Absolutely! Put your new tasks in your gulpfile. You can rewrite Phở's tasks if you give them same name.

Where can I get updates on Phở

Follow @PavelGavlik at Twitter for every update about Phở and more. Like or Follow Source for major Phở updates, helpful links and product releases.