diff --git a/next.config.ts b/next.config.ts index 7d0c720..0573e71 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,14 +2,15 @@ import { withPayload } from '@payloadcms/next/withPayload' import type { NextConfig } from 'next' import path from 'path' import { fileURLToPath } from 'url' - + const __filename = fileURLToPath(import.meta.url) const dirname = path.dirname(__filename) import { redirects } from './redirects' - + const NEXT_PUBLIC_SERVER_URL = process.env.NEXT_PUBLIC_SERVER_URL || 'http://localhost:3001' - + const nextConfig: NextConfig = { + output: 'standalone', sassOptions: { loadPaths: ['./node_modules/@payloadcms/ui/dist/scss/'], }, @@ -23,7 +24,7 @@ const nextConfig: NextConfig = { remotePatterns: [ ...[NEXT_PUBLIC_SERVER_URL].map((item) => { const url = new URL(item) - + return { hostname: url.hostname, protocol: url.protocol.replace(':', '') as 'http' | 'https', @@ -37,21 +38,22 @@ const nextConfig: NextConfig = { '.js': ['.ts', '.tsx', '.js', '.jsx'], '.mjs': ['.mts', '.mjs'], } - + const replaceHash = (val: unknown) => typeof val === 'string' ? val.replace('[chunkhash]', '[contenthash]') : val - + webpackConfig.output.filename = replaceHash(webpackConfig.output.filename) webpackConfig.output.chunkFilename = replaceHash(webpackConfig.output.chunkFilename) - + return webpackConfig }, - + reactStrictMode: true, redirects, turbopack: { root: path.resolve(dirname), }, } - -export default withPayload(nextConfig, { devBundleServerPackages: false }) \ No newline at end of file + +export default withPayload(nextConfig, { devBundleServerPackages: false }) + \ No newline at end of file