forked from github/plane
c7f1090914
* removing dependencies from .env * dev: Passing the arguments from docker compose to DockerWeb in nextjs to define base environment variables * dev: removed env from docker-compose and taking the env from shell * dev: Updated docker file and used console in signin to test the env from docker * dev: Docker setting env variables via shell * removed env variables and args * Update Dockerfile.web * Update Dockerfile.web * Update signin.tsx * . * . * dev: Added BASE_URL from docker * dev: Updated docker config * dev: scripts for replacing variable during runtime * dev: entrypoint script * dev: update replace env script and update docker entrypoint command for frontend * dev: update replace env script to not update process.env * dev: update docker file to add missing variables as well * fix: updated docker compose yml and web * dev: create start script to run docker and update script for replacing variables * dev: update setup script and env example script to create variables in the root of the project * . * dev: update docker compose hub * dev: update docker compose hub command * dev: update docker compose yml and env example * dev: update docker compose hub * dev: single docker --------- Co-authored-by: Narayana <narayana.vadapalli1996@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com>
34 lines
966 B
JavaScript
34 lines
966 B
JavaScript
require("dotenv").config({ path: ".env" });
|
|
|
|
const { withSentryConfig } = require("@sentry/nextjs");
|
|
const path = require("path");
|
|
const extraImageDomains = (process.env.NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS ?? "")
|
|
.split(",")
|
|
.filter((domain) => domain.length > 0);
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: [
|
|
"vinci-web.s3.amazonaws.com",
|
|
"planefs-staging.s3.ap-south-1.amazonaws.com",
|
|
"planefs.s3.amazonaws.com",
|
|
"images.unsplash.com",
|
|
"avatars.githubusercontent.com",
|
|
...extraImageDomains,
|
|
],
|
|
},
|
|
output: "standalone",
|
|
experimental: {
|
|
// this includes files from the monorepo base two directories up
|
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
|
},
|
|
};
|
|
|
|
if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0")) {
|
|
module.exports = withSentryConfig(nextConfig, { silent: true }, { hideSourceMaps: true });
|
|
} else {
|
|
module.exports = nextConfig;
|
|
}
|