Brunch 在我构建时忽略以下划线开头的文件
Brunch is ignoring files starting with an underscore when I build
brunch 在我构建时忽略了资产文件夹中的文件“_redirects”。我要在配置中添加什么来修复?我确定有一些方法可以专门包含此文件。
是的,你必须覆盖 default ignored convention as described in the Brunch docs
conventions: {
ignored: () => false, // override defaults for no ignored files
}
brunch 在我构建时忽略了资产文件夹中的文件“_redirects”。我要在配置中添加什么来修复?我确定有一些方法可以专门包含此文件。
是的,你必须覆盖 default ignored convention as described in the Brunch docs
conventions: {
ignored: () => false, // override defaults for no ignored files
}