// next.config.js const withLess = require('@zeit/next-less') const withCSS = require('@zeit/next-css'); module.exports = withLess({ /* config options here */ }) module.exports = withCSS({ /* config options here */ }); module.exports = { serverRuntimeConfig: { // Will only be available on the server side base_path: 'http://cms.local.angrybeanie.com:8000', audio_path: 'https://audio.angrybeanie.com/' }, images: { domains: ['www.angrybeanie.com', 'localhost'] }, publicRuntimeConfig: { analytics_code: 'UA-2497299-19' } }