diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-10-27 13:39:07 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-10-27 13:39:07 +0200 |
| commit | 2c2e559ca761a18605d047c7dd4236de5d5f4ce9 (patch) | |
| tree | a5415c0da120e47303cc43e903aefa1bc4bb7b26 /opendc-web/opendc-web-ui/next.config.js | |
| parent | c210e9f252a4fe6d126ff7d42ed6937dbd1ad1e5 (diff) | |
build(web/ui): Do not optimize images for export
This change disables optimizing images for exporting, since we do not
want to depend on an external service.
Diffstat (limited to 'opendc-web/opendc-web-ui/next.config.js')
| -rw-r--r-- | opendc-web/opendc-web-ui/next.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-ui/next.config.js b/opendc-web/opendc-web-ui/next.config.js index 5ffd2533..f761ba74 100644 --- a/opendc-web/opendc-web-ui/next.config.js +++ b/opendc-web/opendc-web-ui/next.config.js @@ -38,5 +38,6 @@ module.exports = (phase) => withConfig({ permanent: false } ] - } + }, + images: { unoptimized: true } }) |
