14 lines
221 B
JavaScript
14 lines
221 B
JavaScript
require('dotenv').config()
|
|
|
|
module.exports = {
|
|
publicRuntimeConfig: {
|
|
SERVER_URL: process.env.PAYLOAD_PUBLIC_SERVER_URL,
|
|
},
|
|
images: {
|
|
domains: [
|
|
'localhost',
|
|
// Your domain(s) here
|
|
],
|
|
},
|
|
}
|