Updated ui dockerfile/package.json

This commit is contained in:
2023-12-19 16:46:11 -05:00
parent c2e9f4dad0
commit 8438acc68b
4 changed files with 271 additions and 335 deletions

View File

@@ -5,13 +5,13 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true
},
webpackDevMiddleware: (config) => {
config.watchOptions = {
poll: 1000,
aggregateTimeout: 300
};
return config;
},
// webpackDevMiddleware: (config) => {
// config.watchOptions = {
// poll: 1000,
// aggregateTimeout: 300
// };
// return config;
// },
publicRuntimeConfig: {
// remove private variables from processEnv
processEnv: Object.fromEntries(Object.entries(process.env).filter(([key]) => key.includes('NEXT_PUBLIC_')))