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

13 lines
249 B
JavaScript
Raw Normal View History

module.exports = {
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
}
}