SolidScribe/client/vue.config.js

25 lines
459 B
JavaScript
Raw Normal View History

const fs = require('fs')
2020-10-04 23:46:13 -07:00
module.exports = {
pwa: {
2020-10-04 23:46:13 -07:00
name: 'SolidScribe',
iconPaths: {
favicon32: null,
favicon16: null,
appleTouchIcon: null,
maskIcon: null,
msTileImage: null,
},
},
devServer: {
disableHostCheck: true,
proxy: 'http://localhost:8081',
public: 'marvin.local',
https: {
key: fs.readFileSync('./certs/192.168.1.164+4-key.pem'),
cert: fs.readFileSync('./certs/192.168.1.164+4.pem'),
},
},
2020-10-04 23:46:13 -07:00
}