mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 00:31:39 +03:00
25d1007a9e
- Fixes #9482 - Add URL rewriting logic to `npm run dev` in `app/gui2/` so that "download" actions work # Important Notes - ⚠️ `config.yaml` HAS BEEN REMOVED in favor of `config.json`. - Most of the keys have been removed as they were only used by GUI1. - This is a REQUIRED change, because the vite dev server does not seem to like importing yaml files when running `vite.config.ts`.
16 lines
391 B
JSON
16 lines
391 B
JSON
{
|
|
"name": "enso-common",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "./src/index.js",
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./src/config.json": "./src/config.json",
|
|
"./src/appConfig": "./src/appConfig.js",
|
|
"./src/buildUtils": "./src/buildUtils.js",
|
|
"./src/detect": "./src/detect.ts",
|
|
"./src/gtag": "./src/gtag.ts",
|
|
"./src/load": "./src/load.ts"
|
|
}
|
|
}
|