angrybeanie-front-end/next.config.js
2021-02-04 14:27:14 +11:00

22 lines
No EOL
559 B
JavaScript

// 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'
}
}