20 lines
580 B
TypeScript
20 lines
580 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import path from 'path';
|
|
|
|
export const BLOCK_THEME_SLUG = 'twentytwentyfour';
|
|
export const BLOCK_THEME_NAME = 'Twenty Twenty-Four';
|
|
export const CLASSIC_THEME_SLUG = 'storefront';
|
|
export const CLASSIC_THEME_NAME = 'Storefront';
|
|
export const BASE_URL = 'http://localhost:8889';
|
|
export const STORAGE_STATE_PATH = path.join(
|
|
process.cwd(),
|
|
'artifacts/storage-states/admin.json'
|
|
);
|
|
|
|
// User roles file paths
|
|
export const adminFile = '.auth/admin.json';
|
|
export const customerFile = '.auth/customer.json';
|
|
export const guestFile = '.auth/guest.json';
|