Skip to content

Commit

Permalink
feat: change domain url
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidrezaramzani committed Mar 1, 2024
1 parent 099f83c commit f44a55b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @type {import('next').NextConfig} */
const isProd = process.env.NODE_ENV === 'production'
const isProd = process.env.NODE_ENV === "production";
const nextConfig = {
reactStrictMode: true,
assetPrefix: isProd ? "https://iran-locations-api.vercel.app/" : ""
}
assetPrefix: isProd ? "https://iran-locations-api.liara.run/" : "",
};

module.exports = nextConfig
module.exports = nextConfig;

0 comments on commit f44a55b

Please sign in to comment.