mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-04-24 13:34:55 +00:00
15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: process.env.BUILD_STATIC ? 'export' : 'standalone',
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
|
|
turbopack: {},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: ['@radix-ui/react-icons', '@phosphor-icons/react'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|