vue.config.js 271 B

123456789101112
  1. const fs = require('fs')
  2. module.exports = {
  3. publicPath: "./",
  4. devServer: {
  5. https: {
  6. key: fs.readFileSync('./ssl-cert/key.pem'),
  7. cert: fs.readFileSync('./ssl-cert/cert.pem'),
  8. },
  9. public: 'https://localhost:8080/'
  10. }
  11. }//http://192.168.0.72:8080