yo.dev.conf.js 305 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 const yoBase = require('./yo.base.conf.js'); const yo = require('yo-cli'); module.exports = yo(yoBase) .dev({ port: 5001, host: '0.0.0.0', disableHostCheck: true, headers: { 'Access-Control-Allow-Origin': '*' }, }) .sourceMap() .run();