2020-12-06 21:49:37 +11:00
|
|
|
// 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 */
|
2021-02-04 14:27:14 +11:00
|
|
|
});
|
|
|
|
|
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'
|
|
|
|
|
}
|
|
|
|
|
}
|