I have a certificate and I changed the vite.config.ts to use it by adding ```ts server: { https: { key: './key.pem', cert: './certificate.pem' } }, ``` to it but it only works for dev and not when I use build & start. How can I make it work for production as well?