1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-30 23:09:44 +07:00
verdaccio-ui/src/config/env.js

15 lines
241 B
JavaScript
Raw Normal View History

2019-04-05 02:45:26 +07:00
/**
* @prettier
* @flow
*/
const path = require('path');
const APP_ROOT = path.resolve(__dirname, '../../');
module.exports = {
APP_ROOT,
SRC_ROOT: path.resolve(APP_ROOT, 'src/'),
DIST_PATH: path.resolve(APP_ROOT, 'static/'),
};