Coverage for webapp/vite_integration/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-17 22:07 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-17 22:07 +0000
1from webapp.config import IS_DEVELOPMENT
2from webapp.vite_integration.impl import (
3 DevViteIntegration,
4 ProdViteIntegration,
5)
8ViteIntegration = (
9 DevViteIntegration if IS_DEVELOPMENT else ProdViteIntegration
10)()