Skip to content

Commit

Permalink
Fix PWA icon
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavid04 committed Mar 14, 2024
1 parent 72ce5b2 commit b1aa64e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ export default defineConfig({
emptyOutDir: true,
rollupOptions: {
input: Object.assign({
main: resolve(__dirname, 'src/index.html')
main: resolve(__dirname, 'src/index.html'),
manifest: resolve(__dirname, 'src/app.webmanifest'),
icon: resolve(__dirname, 'src/icon.png'),
}, ['psi', 'phi'].map(name => resolve(__dirname, `src/pieces/${name}.html`)))
}
}
Expand Down

0 comments on commit b1aa64e

Please sign in to comment.