build: merge with latest changes update dockerfile to work with pnpm

This commit is contained in:
pablohashescobar 2022-12-02 00:28:31 +05:30
parent 45fe4b89db
commit 7ef9ea07f0
161 changed files with 67 additions and 48 deletions

18
apps/app/next.config.js Normal file
View file

@ -0,0 +1,18 @@
/** @type {import('next').NextConfig} */
const path = require("path");
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
domains: ["vinci-web.s3.amazonaws.com"],
},
output: 'standalone',
experimental: {
outputFileTracingRoot: path.join(__dirname, "../../"),
transpilePackages: ["ui"],
},
};
module.exports = nextConfig;