Skip to content

Commit

Permalink
fix(#70): favicon opcional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsson committed Jan 30, 2020
1 parent 5342e6c commit 79f40a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/papyrum-core/src/webpack/config.build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const getConfig = config => {
new HtmlWebpackPlugin({
template: setPathHtmlTemplate(config),
title: config.title,
favicon: path.resolve(process.cwd(), config.static, config.favicon),
favicon: config.favicon && path.resolve(process.cwd(), config.static, config.favicon),
meta: {
viewport: 'width=device-width, initial-scale=1',
charset: 'UTF-8'
Expand Down

0 comments on commit 79f40a7

Please sign in to comment.