Skip to content

Commit

Permalink
REMOVE: webpack ssl config
Browse files Browse the repository at this point in the history
  • Loading branch information
barmintor committed Mar 11, 2024
1 parent a0641b4 commit 4309da6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,14 @@ module.exports = (env, options) => {
...config,
devServer: {
hot: true,
port: 4444,
host: 'dev.local',
server: {
type: 'https',
options: {
key: fs.readFileSync("./local/dev.local.key"),
cert: fs.readFileSync("./local/dev.local.crt")
}
},
static: [
'./__tests__/integration/mirador',
'./__tests__/fixtures',
Expand Down

0 comments on commit 4309da6

Please sign in to comment.