mirror of
https://github.com/ParrotXray/Mantis-Frontend.git
synced 2026-08-24 15:50:29 +09:00
29 lines
644 B
JavaScript
29 lines
644 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
trailingSlash: false,
|
|
output: 'export',
|
|
images: {
|
|
remotePatterns: [
|
|
// {
|
|
// protocol: 'https',
|
|
// hostname: 'cdn.discordapp.com',
|
|
// pathname: '/avatars/**',
|
|
// },
|
|
],
|
|
},
|
|
|
|
// i18n: {
|
|
// locales: ['tw', 'cn', 'ja', 'en'],
|
|
// defaultLocale: 'tw',
|
|
// localeDetection: true,
|
|
// },
|
|
//
|
|
// allowedDevOrigins: [
|
|
// '192.168.1.118',
|
|
// 'localhost',
|
|
// '127.0.0.1',
|
|
// ],
|
|
};
|
|
|
|
export default nextConfig; |