blob: 96923160cc866c152edfeb771a4f524a3dd1a7c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)) }),
],
}),
},
});
|