fp/packages/next/next.config.js

29 lines
563 B
JavaScript

/** @type {import('next').NextConfig} */
const path = require("path");
const nextConfig = {
output: 'standalone',
reactStrictMode: false,
sassOptions: {
includePaths: [path.join(__dirname, "assets", "styles")],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'futureporn-b2.b-cdn.net',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'fp-dev.b-cdn.net',
port: '',
pathname: '/**',
},
],
}
};
module.exports = nextConfig;