🔧 Increased budget size limits in angular.json, edited the index path in ngsw-config.json, and added a new Vite configuration file.

master
parent b28033ae33
commit e05a7593d5

@ -48,8 +48,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "1MB",
"maximumError": "5MB"
"maximumWarning": "5MB",
"maximumError": "10MB"
},
{
"type": "anyComponentStyle",

@ -1,6 +1,6 @@
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/",
"index": "/index.html",
"assetGroups": [
{
"name": "app",

@ -0,0 +1,7 @@
import { defineConfig } from 'vite';
export default defineConfig({
optimizeDeps: {
exclude: ['leaflet.markercluster'],
},
});
Loading…
Cancel
Save