mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
feat: init
This commit is contained in:
20
webpage/next.config.js
Normal file
20
webpage/next.config.js
Normal file
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user