website-2/next.config.js

10 lines
158 B
JavaScript
Raw Normal View History

2022-04-10 20:15:15 +10:00
/** @type {import('next').NextConfig} */
2022-04-20 11:43:15 +10:00
module.exports = {
output: 'standalone',
experimental: {
images: {
allowFutureImage: true,
}
}
2022-04-20 11:43:15 +10:00
}