加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.umirc.js 810 Bytes
一键复制 编辑 原始数据 按行查看 历史
徐小夕 提交于 2020-08-27 13:09 . 移动端H5编辑器预览
import path from 'path';
import { defineConfig } from 'umi';
export default defineConfig({
dynamicImport: {
loading: '@/components/LoadingCp',
},
dva: {
immer: true,
},
antd: {},
sass: {
implementation: require('node-sass'),
},
title: '趣谈前端H5',
exportStatic: {},
base: 'h5',
publicPath: '/h5/',
outputPath: '../server/static/h5',
routes: [
{
path: '/',
component: '../pages/index',
},
],
theme: {
'primary-color': '#2F54EB',
// "btn-primary-bg": "#2F54EB"
},
extraBabelPlugins: [['import', { libraryName: 'zarm', style: true }]],
// sass: {},
alias: {
components: path.resolve(__dirname, 'src/components/'),
utils: path.resolve(__dirname, 'src/utils/'),
assets: path.resolve(__dirname, 'src/assets/'),
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化