diff --git a/playground/vite.config.ts b/playground/vite.config.ts index 6c240cb9..db42ac40 100644 --- a/playground/vite.config.ts +++ b/playground/vite.config.ts @@ -3,9 +3,7 @@ import httpImport from "import-http/rollup"; import { defineConfig } from "vite"; export default defineConfig({ + base: process.env.NODE_ENV === "production" ? "/whatchanged" : "/", root: __dirname, - build: { - base: process.env.NODE_ENV === "production" ? "/whatchanged" : "/", - }, plugins: [vue(), httpImport()], });