This repository was archived by the owner on Sep 15, 2023. It is now read-only.
This repository was archived by the owner on Sep 15, 2023. It is now read-only.
Fonts aren't copied over on build #567
Open
Description
So I have this pretty much out of the box config file. Everything else works when I build but not the fonts task. Not even a folder is created.
module.exports = {
html: true,
images: true,
fonts: true,
static: true,
svgSprite: true,
ghPages: true,
stylesheets: true,
javascripts: {
entry: {
// files paths are relative to
// javascripts.dest in path-config.json
app: ['./app.js']
}
},
browserSync: {
server: {
// should match `dest` in
// path-config.json
baseDir: 'public'
}
},
production: {
rev: false
}
};
Any ideas on how to fix this? It's kind of annoying to have to copy over the fonts all the time.