diff --git a/client/app.js b/client/app.js index ce3c802d..74d9d523 100644 --- a/client/app.js +++ b/client/app.js @@ -120,7 +120,7 @@ let bootstrap = () => { // ==================================== import(/* webpackChunkName: "icons" */ './svg/icons.svg').then(icons => { - document.body.insertAdjacentHTML('beforeend', icons) + document.body.insertAdjacentHTML('beforeend', icons.default) }) } diff --git a/server/views/master.pug b/server/views/master.pug index 25c95c2e..e1a002dd 100644 --- a/server/views/master.pug +++ b/server/views/master.pug @@ -22,9 +22,9 @@ html var siteConfig = !{JSON.stringify(config.site)} //- CSS - link(type='text/css', rel='stylesheet', href='/css/bundle.css') link(type='text/css', rel='stylesheet', href='https://fonts.googleapis.com/icon?family=Roboto:400,500,700|Source+Code+Pro:400,700|Material+Icons') link(type='text/css', rel='stylesheet', href='https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css') + link(type='text/css', rel='stylesheet', href='/css/bundle.css') //- JS script(type='text/javascript', src='/js/client.js')