mirror of
https://github.com/selfboot/ai_gallery.git
synced 2026-06-04 21:06:53 +08:00
24 lines
462 B
JavaScript
24 lines
462 B
JavaScript
const path = require('path');
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['lodash'],
|
|
turbopack: {
|
|
resolveAlias: {
|
|
'@': path.resolve(__dirname, 'src')
|
|
}
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'slefboot-1251736664.file.myqcloud.com',
|
|
port: '',
|
|
pathname: '/**',
|
|
},
|
|
]
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig; |