mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
24 lines
495 B
TypeScript
24 lines
495 B
TypeScript
import type { NextConfig } from 'next';
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
const withNextIntl = createNextIntlPlugin('./locales/request.ts');
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['@workspace/ui'],
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.**.**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.**',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|