1234567891011121314151617181920 |
- // https://umijs.org/config/
- import { defineConfig } from 'umi';
- export default defineConfig({
- define: {
- API_BASE: '',
- H5_URL:'http://h5.njyunzhi.com/state-grid/invoice-filling-h5/index.html',
- MODEL_URL:'https://h5.njyunzhi.com/assets/%E6%8A%A5%E9%94%80%E4%BA%BA%E5%91%98%E6%A8%A1%E6%9D%BF.xlsx'
- },
- //
- plugins: [
- // https://github.com/zthxxx/react-dev-inspector
- 'react-dev-inspector/plugins/umi/react-inspector',
- ],
- // https://github.com/zthxxx/react-dev-inspector#inspector-loader-props
- inspectorConfig: {
- exclude: [],
- babelPlugins: [],
- babelOptions: {},
- },
- });
|