extracted selection logic to own feature and anhanched with range selection
This commit is contained in:
parent
40f46eba1d
commit
1a963a665e
15 changed files with 295 additions and 254 deletions
|
@ -4,7 +4,25 @@ import { VitePWA } from 'vite-plugin-pwa'
|
|||
export default defineConfig({
|
||||
vite: {
|
||||
plugins: [
|
||||
VitePWA({ registerType: 'autoUpdate' }),
|
||||
VitePWA({
|
||||
mode: 'development',
|
||||
// srcDir: 'src',
|
||||
// filename: 'claims-sw.ts',
|
||||
strategies: 'injectManifest',
|
||||
registerType: 'autoUpdate',
|
||||
base: '/',
|
||||
manifest: {
|
||||
name: 'Translation tool',
|
||||
short_name: 'T_tool',
|
||||
theme_color: '#f0f',
|
||||
icons: [],
|
||||
},
|
||||
devOptions: {
|
||||
enabled: true,
|
||||
type: 'module',
|
||||
navigateFallback: 'index.html',
|
||||
},
|
||||
}),
|
||||
]
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue