AniX/frontend/next.config.mjs
Kentai Radiquum d97ad7dbfe
feat(deploy): allow deploying on deta.space
- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles

BREAKING CHANGE:
2024-05-13 22:20:08 +05:00

19 lines
346 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "anixstatic.com",
},
{
protocol: "https",
hostname: "i.imgur.com",
},
],
},
};
export default nextConfig;