2015-09-20 47 views
4

我需要使用Express.js,jade和更少的應用程序創建應用程序,並且想要使用webpack捆綁應用程序。 整個互聯網充滿了關於設置webpack的反應文章,但沒有人將它設置爲模塊化的JavaScript通常的快速應用程序。如何爲express.js應用程序設置webpack,不反應應用程序?

還有有關如何從.LESS文件

讓common.css請幫助我沒有一個人的文章!

+0

出於好奇,你在尋找webpack表達自己缺乏什麼好處? –

回答

0
  • https://github.com/webpack/less-loader
  • https://github.com/webpack/jade-loader

    require("jade!./template.jade"); 
    // => uses the "jade-loader" (that is installed from npm to "node_modules") 
    // to transform the file "template.jade" 
    
    require("!style!css!less!bootstrap/less/bootstrap.less"); 
    // => the file "bootstrap.less" in the folder "less" in the "bootstrap" 
    // module (that is installed from github to "node_modules") is 
    // transformed by the "less-loader". The result is transformed by the 
    // "css-loader" and then by the "style-loader". 
    

單獨裝填!

退房在的WebPack文檔有關如何設置捆紮處理例的配置API。這只是一個定義你的入口點和你的目的地的問題。

如果您正在尋找自動刷新的webpack dev服務器API。

+0

我已閱讀關於裝載機 - 他們沒有問題。 問題是從.less文件中獲取common.css和其他chunk css – Vadim

相關問題