mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
21 lines
483 B
JavaScript
21 lines
483 B
JavaScript
const withPlugins = require("next-compose-plugins");
|
|
const { withImages } = require('./plugins/with-images');
|
|
const { withGoodwrites } = require('./plugins/with-goodwrites');
|
|
const { withMarkdown } = require('./plugins/with-markdown');
|
|
|
|
const nextConfig = {
|
|
poweredByHeader: false,
|
|
images: {
|
|
disableStaticImages: true
|
|
},
|
|
experimental: {
|
|
concurrentFeatures: true,
|
|
},
|
|
};
|
|
|
|
module.exports = withPlugins([
|
|
withImages,
|
|
withGoodwrites,
|
|
withMarkdown,
|
|
], nextConfig);
|