LOCKING盒子版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
516 B

  1. import { defineConfig } from 'umi';
  2. export default defineConfig({
  3. nodeModulesTransform: {
  4. type: 'none',
  5. },
  6. // routes: [
  7. // { path: '/', component: '@/pages/index' },
  8. // ],
  9. fastRefresh: {},
  10. theme: {
  11. "primary-color": "#7850FF",
  12. "app-header-height": "48px"
  13. },
  14. proxy: {
  15. '/api': {
  16. target: 'http://139.198.180.242:9003',
  17. // target: 'http://www.lockingos.org:9003',
  18. //target: 'http://192.168.8.114:8082',
  19. changeOrigin: true,
  20. secure: false,
  21. }
  22. }
  23. });