9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
open: process.platform === 'darwin',
|
|
host: '0.0.0.0',
|
|
port: 8080, // CHANGE YOUR PORT HERE!
|
|
https: true,
|
|
hotOnly: false,
|
|
},
|
|
} |