From df7ffaf4cb722890ca3159c3839c61552f7195d3 Mon Sep 17 00:00:00 2001 From: polwex Date: Thu, 15 May 2025 04:37:12 +0700 Subject: all working now... --- waku.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 waku.config.ts (limited to 'waku.config.ts') diff --git a/waku.config.ts b/waku.config.ts new file mode 100644 index 0000000..9692316 --- /dev/null +++ b/waku.config.ts @@ -0,0 +1,13 @@ +import { fileURLToPath } from "node:url"; +import { defineConfig } from "waku/config"; +import tsconfigPaths from "vite-tsconfig-paths"; + +export default defineConfig({ + unstable_viteConfigs: { + common: () => ({ + plugins: [ + tsconfigPaths({ root: fileURLToPath(new URL(".", import.meta.url)) }), + ], + }), + }, +}); -- cgit v1.2.3