Florian

Results 2 comments of Florian

> I believe you are getting this error because you have an icon listed in your manifest that isn't correctly sized. It is actually 1024x1024 but you have it listed...

Other solution to copy `manifest.json` PWA into build folder : ``` Encore .addPlugin(new CopyWebpackPlugin({ patterns: [ { from: './assets/icon_pwa', to: 'icon_pwa' }, { from: './assets/manifest.json', to: path.resolve(__dirname, 'public/build', 'manifest.json') }...