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

13 lines
247 B
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
export default {
2017-01-18 17:04:41 +00:00
head: {
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
},
2017-07-10 07:03:18 +00:00
modules: ['~/io'],
2017-01-18 17:04:41 +00:00
env: {
2017-07-10 07:03:18 +00:00
WS_URL: process.env.WS_URL || 'http://localhost:3000'
2017-01-18 16:25:06 +00:00
}
}