nocobase/.umirc.ts

38 lines
1021 B
TypeScript
Raw Normal View History

import { defineConfig } from 'dumi';
2021-07-24 08:37:13 +00:00
console.log('process.env.API_URL', process.env.API_URL)
export default defineConfig({
title: ' ',
hash: true,
2021-07-23 10:26:05 +00:00
define: {
'process.env.API_URL': process.env.API_URL,
2021-10-01 15:31:49 +00:00
'process.env.API_HOSTNAME': process.env.API_HOSTNAME,
2021-07-23 10:26:05 +00:00
},
2021-09-30 07:16:41 +00:00
proxy: {
'/api': {
'target': `http://localhost:${process.env.API_PORT}/`,
'changeOrigin': true,
2021-10-01 15:31:49 +00:00
'pathRewrite': { '^/api/': '/api/' },
2021-09-30 07:16:41 +00:00
},
},
2021-08-16 04:36:17 +00:00
// mfsu: {},
2021-05-23 00:38:08 +00:00
// ssr: {},
// exportStatic: {},
2021-09-11 10:53:26 +00:00
mode: 'doc',
logo: 'https://www.nocobase.com/dist/images/logo.png',
navs: {
'en-US': [
null,
{ title: 'GitHub', path: 'https://github.com/nocobase/nocobase' },
{ title: 'Changelog', path: 'https://github.com/nocobase/nocobase/releases' },
],
'zh-CN': [
null,
{ title: 'GitHub', path: 'https://github.com/nocobase/nocobase' },
{ title: '更新日志', path: 'https://github.com/nocobase/nocobase/releases' },
],
},
// more config: https://d.umijs.org/config
});