From 5f44905bff16130949e52ec7bf320c1c87256f9f Mon Sep 17 00:00:00 2001 From: xiaohuoni Date: Tue, 5 Nov 2024 11:38:42 +0800 Subject: [PATCH] fix: test e2e --- examples/mako/config/config.ts | 3 ++- examples/mako/e2e/{boilerplate.test.ts => mako.test.ts} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename examples/mako/e2e/{boilerplate.test.ts => mako.test.ts} (100%) diff --git a/examples/mako/config/config.ts b/examples/mako/config/config.ts index ba1db11c..c6da7423 100644 --- a/examples/mako/config/config.ts +++ b/examples/mako/config/config.ts @@ -2,6 +2,7 @@ import { defineConfig } from 'alita'; export default defineConfig({ appType: 'pc', - keepalive: [/./], mako: {}, + // 开了 mako 就要关 codeSplitting !!! + codeSplitting: false, }); diff --git a/examples/mako/e2e/boilerplate.test.ts b/examples/mako/e2e/mako.test.ts similarity index 100% rename from examples/mako/e2e/boilerplate.test.ts rename to examples/mako/e2e/mako.test.ts