fix(desktop): commit public env config

This commit is contained in:
Mo
2022-06-16 13:38:48 -05:00
parent d93e7cbcb5
commit fef253c62f
5 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
const env = process.env.NODE_ENV ?? 'production'
require('dotenv').config({
path: `.env.${env}`,
path: `.env.public.${env}`,
})
const path = require('path')