nhfs
Version:
NHFS — A sleek HTTP file server for the web built with Next.js and HeroUI. (Alpha)
24 lines (22 loc) • 411 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
eslint: {
dirs: ['lib', 'app', 'components', 'hooks', 'types'],
},
images: {
remotePatterns: [
{
hostname: '**',
protocol: 'http',
port: '',
},
{
hostname: '**',
protocol: 'https',
port: '',
},
],
},
};
module.exports = nextConfig;