feat(customer vue, customer-gateway-service): SSL 적용

- customer vue SSL적용
- customer gateway service SSL적용
This commit is contained in:
hoon7566
2022-03-04 14:47:50 +09:00
parent 8363836299
commit f1ecaec79c
9 changed files with 78 additions and 6 deletions

View File

@@ -1,6 +1,12 @@
const fs = require("fs");
module.exports = {
transpileDependencies: true,
devServer:{
allowedHosts: 'all',
https: {
key: fs.readFileSync('mydomain.key'),
cert: fs.readFileSync('trustService.cer'),
}
}
}