Skip to content

Commit

Permalink
Update vite.config.ts - try turning off HTTPS so build works
Browse files Browse the repository at this point in the history
  • Loading branch information
RobKraft authored Oct 25, 2024
1 parent 0f7fd15 commit d746b33
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ export default defineConfig({
}
},
port: 5173,
https: {
key: fs.readFileSync(keyFilePath),
cert: fs.readFileSync(certFilePath),
}
https: false
// {
//# key: fs.readFileSync(keyFilePath),
//cert: fs.readFileSync(certFilePath),
//}
}
})

0 comments on commit d746b33

Please sign in to comment.