Rename FE_BASE_PATH to FE_SUBDIRECTORY

This commit is contained in:
Alex Gleason
2021-09-05 13:21:39 -05:00
parent d20fdf1a3f
commit ea26e86a94
11 changed files with 28 additions and 28 deletions

View File

@ -2,7 +2,7 @@ const { join } = require('path');
const { env } = require('process');
const {
FE_BASE_PATH,
FE_SUBDIRECTORY,
FE_BUILD_DIR,
} = require(join(__dirname, '..', 'app', 'soapbox', 'build_config'));
@ -19,7 +19,7 @@ const settings = {
const outputDir = env.NODE_ENV === 'test' ? settings.test_root_path : settings.public_root_path;
const output = {
path: join(__dirname, '..', outputDir, FE_BASE_PATH),
path: join(__dirname, '..', outputDir, FE_SUBDIRECTORY),
};
module.exports = {