2014-02-18 57 views
4

構建時,我想忽略samples/文件夾。我用這個當使用Middleman構建時忽略文件夾App

configure :build do 
    activate :asset_hash, :ignore => [/^samples\//] 
end 

它沒有工作,該文件夾仍然包括在構建過程中。任何人都可以建議嗎?

回答

7

下面的代碼添加到您的config.rb文件:

ignore 'samples/*' 

#ignore接受正則表達式爲好。見the specs