remove ssl config

This commit is contained in:
SrGooglo 2025-03-25 23:04:02 +00:00
parent 8aade811fe
commit ad996a4313

View File

@ -46,11 +46,11 @@ const config = {
},
}
if (fs.existsSync(sslDirPath)) {
config.server.https = {
key: path.join(__dirname, ".ssl", "privkey.pem"),
cert: path.join(__dirname, ".ssl", "cert.pem"),
}
}
// if (fs.existsSync(sslDirPath)) {
// config.server.https = {
// key: path.join(__dirname, ".ssl", "privkey.pem"),
// cert: path.join(__dirname, ".ssl", "cert.pem"),
// }
// }
export default defineConfig(config)