mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* feat: decouple package deps and introduce yarn workspaces * update root directory * fix * fix scripts * fix lint * update path in scripts * remove yarn.lock files from packages * ignore workspace * dummy * dummy * remove comment check * revert workflow changes * ignore ws when installing gh actions * remove log * update path * fix * fix typo
8 lines
305 B
JavaScript
8 lines
305 B
JavaScript
import { ENV } from "./constants";
|
|
if (process.env.NODE_ENV !== ENV.TEST) {
|
|
/* eslint-disable */
|
|
/* global __webpack_public_path__:writable */
|
|
__webpack_public_path__ =
|
|
window.EXCALIDRAW_ASSET_PATH ||
|
|
`https://unpkg.com/${process.env.VITE_PKG_NAME}@${process.env.VITE_PKG_VERSION}/dist/`;
|
|
}
|