mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 17:46:36 +00:00
cd5bd09c50
* fix: tsconfig * chore(versions): 😊 publish v0.7.1-alpha.1 * fix: update gitHead * fix: update gitHead * chore(versions): 😊 publish v0.7.1-alpha.2 * fix: update client/server entry file * chore(versions): 😊 publish v0.7.1-alpha.3 * fix: check core dir * fix: missing core dir * feat: relationship fields are loaded on demand
72 lines
2.2 KiB
JavaScript
72 lines
2.2 KiB
JavaScript
const { existsSync } = require('fs');
|
|
const { resolve } = require('path');
|
|
const packageJson = require('./package.json');
|
|
const fs = require('fs');
|
|
|
|
console.log('VERSION: ', packageJson.version);
|
|
|
|
function getUmiConfig() {
|
|
const { APP_PORT, API_BASE_URL } = process.env;
|
|
const API_BASE_PATH = process.env.API_BASE_PATH || '/api/';
|
|
const PROXY_TARGET_URL = process.env.PROXY_TARGET_URL || `http://127.0.0.1:${APP_PORT}`;
|
|
const LOCAL_STORAGE_BASE_URL = process.env.LOCAL_STORAGE_BASE_URL || '/storage/uploads/';
|
|
|
|
function getLocalStorageProxy() {
|
|
if (LOCAL_STORAGE_BASE_URL.startsWith('http')) {
|
|
return {};
|
|
}
|
|
|
|
return {
|
|
[LOCAL_STORAGE_BASE_URL]: {
|
|
target: PROXY_TARGET_URL,
|
|
changeOrigin: true,
|
|
},
|
|
};
|
|
}
|
|
|
|
return {
|
|
define: {
|
|
'process.env.API_BASE_URL': API_BASE_URL || API_BASE_PATH,
|
|
'process.env.APP_ENV': process.env.APP_ENV,
|
|
'process.env.VERSION': packageJson.version,
|
|
},
|
|
// only proxy when using `umi dev`
|
|
// if the assets are built, will not proxy
|
|
proxy: {
|
|
[API_BASE_PATH]: {
|
|
target: PROXY_TARGET_URL,
|
|
changeOrigin: true,
|
|
pathRewrite: { [`^${API_BASE_PATH}`]: API_BASE_PATH },
|
|
},
|
|
// for local storage
|
|
...getLocalStorageProxy(),
|
|
},
|
|
};
|
|
}
|
|
|
|
function resolveNocobasePackagesAlias(config) {
|
|
const coreDir = resolve(process.cwd(), './packages/core');
|
|
if (!existsSync(coreDir)) {
|
|
return;
|
|
}
|
|
const cores = fs.readdirSync(coreDir);
|
|
for (const package of cores) {
|
|
const packageSrc = resolve(process.cwd(), './packages/core/', package, 'src');
|
|
if (existsSync(packageSrc)) {
|
|
config.module.rules.get('ts-in-node_modules').include.add(packageSrc);
|
|
config.resolve.alias.set(`@nocobase/${package}`, packageSrc);
|
|
}
|
|
}
|
|
const plugins = fs.readdirSync(resolve(process.cwd(), './packages/plugins'));
|
|
for (const package of plugins) {
|
|
const packageSrc = resolve(process.cwd(), './packages/plugins/', package, 'src');
|
|
if (existsSync(packageSrc)) {
|
|
config.module.rules.get('ts-in-node_modules').include.add(packageSrc);
|
|
config.resolve.alias.set(`@nocobase/plugin-${package}`, packageSrc);
|
|
}
|
|
}
|
|
}
|
|
|
|
exports.getUmiConfig = getUmiConfig;
|
|
exports.resolveNocobasePackagesAlias = resolveNocobasePackagesAlias;
|