Update Vite configuration to disable JSON stringification and remove unnecessary custom headers from web.config for improved MIME type handling.

This commit is contained in:
2025-04-18 04:48:22 -04:00
parent ebe6fb70a2
commit 2d0037bb89
2 changed files with 1 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ export default defineConfig(({mode}) => {
VITE_STRIPE_API_KEY: JSON.stringify(env.VITE_STRIPE_API_KEY)
},
json: {
stringify: true
stringify: false
}
}
})