github.com/pelicanplatform/pelican@v1.0.5/web_ui/frontend/next.config.js (about)

     1  /** @type {import('next').NextConfig} */
     2  const nextConfig = {
     3      output: process.env.NODE_ENV == "dev" ? "standalone" : 'export',
     4      basePath: "/view",
     5      trailingSlash: true,
     6      images: { unoptimized: true }
     7  }
     8  
     9  module.exports = nextConfig