1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

Added knip configuration and fixed filepaths causing errors

This commit is contained in:
Leslie Tilton
2025-03-25 15:33:57 -05:00
parent abb314a0e7
commit bdccb02fc7
4 changed files with 12 additions and 4 deletions

View File

@@ -206,8 +206,8 @@ const devServer =
server: {
type: "https",
options: {
key: fs.readFileSync("dev-server" + certSuffix + ".pem"),
cert: fs.readFileSync("dev-server" + certSuffix + ".pem"),
key: fs.readFileSync(path.join(__dirname, "dev-server" + certSuffix + ".pem")),
cert: fs.readFileSync(path.join(__dirname, "dev-server" + certSuffix + ".pem")),
},
},
// host: '192.168.1.9',