/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import path from 'path'; export const rootDir = path.resolve(__dirname, '..'); export const appDir = path.join(rootDir, 'app'); export const staticDir = path.join(rootDir, 'static'); export const pluginsDir = path.join(rootDir, 'plugins'); export const headlessDir = path.join(rootDir, 'headless');