Nuxt/examples/with-sockets/nuxt.config.js

15 lines
281 B
JavaScript
Raw Normal View History

2017-01-18 16:25:06 +00:00
module.exports = {
build: {
vendor: ['socket.io-client']
2017-01-18 17:04:41 +00:00
},
head: {
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
},
env: {
HOST_URL: process.env.HOST_URL || 'http://localhost:3000'
2017-01-18 16:25:06 +00:00
}
}