Replies: 3 comments 5 replies
-
what's missing for that? |
Beta Was this translation helpful? Give feedback.
4 replies
-
Some guide like https://nextjs.org/docs/app/building-your-application/configuring/progressive-web-apps would be helpful. |
Beta Was this translation helpful? Give feedback.
0 replies
-
TanStack Start current build process is not compatible with vite-pwa-plugin as I understand. After adding it into export default defineConfig({
vite: {
plugins: [
tsConfigPaths({
projects: ['./tsconfig.json'],
}),
VitePWA({
registerType: 'autoUpdate',
devOptions: {
enabled: true
},
manifest: {
name: 'My Awesome App',
short_name: 'MyApp',
description: 'My Awesome App description',
theme_color: '#ffffff'
}
})
],
},
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Setup PWA, with https://vite-pwa-org.netlify.app/
Beta Was this translation helpful? Give feedback.
All reactions