123456789101112 |
- const fs = require('fs')
- module.exports = {
- publicPath: "./",
- devServer: {
- https: {
- key: fs.readFileSync('./ssl-cert/key.pem'),
- cert: fs.readFileSync('./ssl-cert/cert.pem'),
- },
- public: 'https://localhost:8080/'
- }
- }//http://192.168.0.72:8080
|