noogle/website/next.config.js
Johannes Kirschbauer d9f579cf44
Feature/monorepo (#24)
* refactor to include all necessary dependencies directly here

* move indexer into monorepo

* add snapshot tests and seperate sub.project for builtin types

* add more missing builtins such as fromTOML
2023-02-25 13:14:40 +01:00

15 lines
260 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = (phase, { defaultConfig }) => {
const config = {
reactStrictMode: true,
swcMinify: true,
images: {
loader: "custom",
},
};
return config;
};
module.exports = nextConfig;