This commit is contained in:
Christian Anetzberger
2022-01-29 20:48:35 +01:00
commit 01907eb338
144 changed files with 11275 additions and 0 deletions

34
next.config.js Normal file
View File

@@ -0,0 +1,34 @@
const path = require("path");
const withPlugins = require("next-compose-plugins");
const optimizedImages = require("next-optimized-images");
module.exports = withPlugins([
[
optimizedImages,
{
mozjpeg: {
quality: 70,
},
svgo: {
plugins: [{ removeComments: false }],
},
},
],
{
sassOptions: {
includePaths: [path.join(__dirname, "styles")],
},
async rewrites() {
return [
{
source: "/fertigungsverfahren",
destination: "/fertigungsverfahren/laserteile",
},
{
source: "/qualitaet",
destination: "/qualitaet/auszeichnungen",
},
];
},
},
]);