10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
import { defineConfig } from "@umijs/max";
|
|
|
|
export default defineConfig({
|
|
// 最小化有效配置
|
|
history: { type: 'hash' },
|
|
plugins: [],
|
|
// 禁用MFSU功能
|
|
mfsu: false,
|
|
});
|