noogle/next.config.js

13 lines
228 B
JavaScript
Raw Normal View History

2022-11-26 12:36:08 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
loader: "custom",
},
basePath: "/noogle",
assetPrefix: "/noogle/",
2022-11-26 12:36:08 +03:00
};
module.exports = nextConfig;