You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
284 B
7 lines
284 B
import { dirname, resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const DIR_DIST = typeof __dirname !== "undefined" ? __dirname : dirname(fileURLToPath(import.meta.url));
|
|
const DIR_CLIENT = resolve(DIR_DIST, "../dist/client");
|
|
|
|
export { DIR_CLIENT, DIR_DIST };
|