Use single directory for config
This commit is contained in:
parent
e46533046f
commit
0b1dcb224d
6 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
const { statSync, existsSync, readdirSync } = require('fs');
|
||||
const { join, resolve } = require('path');
|
||||
const DEFAULT_ROOT = 'client/build';
|
||||
const CUSTOM_ROOT = 'client_custom/build';
|
||||
const CUSTOM_SCSS_ROOT = 'client_custom/scss';
|
||||
const CUSTOM_ROOT = 'config/client_custom/build';
|
||||
const CUSTOM_SCSS_ROOT = 'config/client_custom/scss';
|
||||
|
||||
const getFolders = path => {
|
||||
if (existsSync(path)) {
|
||||
|
|
Loading…
Reference in a new issue