PR-492498: changing some webpack configuration and updating packages.

This commit is contained in:
2022-08-30 17:00:36 +00:00
parent 1086989101
commit 9c2c283f61
11 changed files with 1336 additions and 1301 deletions

View File

@ -1,6 +1,11 @@
const config = {
env: process.env.ENV ? process.env.ENV : 'production',
port: process.env.PORT ? process.env.PORT : 80,
export const config = {
ENV: process.env.ENV,
PORT: process.env.PORT,
PUBLIC_URL: process.env.PUBLIC_URL,
};
export default config;
export const deFaultValues = {
ENV: 'production',
PORT: 80,
PUBLIC_URL: '/',
}