Allow console logging when starting dev server

This commit is contained in:
Julian Stirling 2026-05-15 12:59:40 +01:00
parent 20e6cbc1a2
commit 4aee0de945

View file

@ -21,6 +21,8 @@ export default defineConfig(({ command, mode }) => {
} else {
throw new Error(`Invalid VITE_API_TARGET: ${env.VITE_API_TARGET}`);
}
// Allow a console log as we were serving for development.
// eslint-disable-next-line no-console
console.log(`Proxying /api → ${target}`);
}