build: create frontend and backend dockerfiles docker compose and scripts
This commit is contained in:
parent
26ec1e8c15
commit
949b62d13f
151 changed files with 186 additions and 1 deletions
18
apps/plane/next.config.js
Normal file
18
apps/plane/next.config.js
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue