1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-23 14:57:46 +01:00

fix(tsconfig): 🔧 Fix includePaths

- Config file di Vite mancante
- Includi solo `resources/js/*` e non anche le altre cartelle dentro `resources`
This commit is contained in:
Maicol Battistini 2022-01-06 18:14:13 +01:00
parent ff71b7b477
commit c9fb53ec45
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A
2 changed files with 9 additions and 8 deletions

View File

@ -22,6 +22,7 @@
"baseUrl": "."
},
"include": [
"resources/**/*"
"resources/js/*",
"vite.config.ts"
]
}

View File

@ -24,18 +24,18 @@ export default defineConfig(osmConfig({
{
src: 'android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
type: 'image/png'
},
{
src: 'android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png'
},
{
src: 'android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: 'android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
purpose: 'any maskable'
}
]
},