mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 01:35:51 +00:00
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
const withImages = require('next-images')
|
|
const p = require('./package.json')
|
|
|
|
const version = p.version;
|
|
|
|
module.exports = withImages({
|
|
publicRuntimeConfig: {
|
|
endpoint: process.env.API_HOST || '/graphql',
|
|
version,
|
|
}
|
|
})
|