-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.ts
44 lines (42 loc) · 1.42 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { TanStackRouterVite as tanStackRouter } from "@tanstack/router-vite-plugin";
import unhead from "@unhead/addons/vite";
import react from "@vitejs/plugin-react";
import unocss from "unocss/vite";
import autoImport from "unplugin-auto-import/vite";
import { defineConfig } from "vite";
import { URL, fileURLToPath } from "node:url";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [
{ find: "~", replacement: fileURLToPath(new URL("./src", import.meta.url)) },
{ find: "~@", replacement: fileURLToPath(new URL("./src/bootstrap", import.meta.url)) },
],
},
plugins: [
unocss(),
tanStackRouter({
quoteStyle: "double",
routesDirectory: "./src/pages",
generatedRouteTree: "./.generated/route-tree.gen.ts",
semicolons: true,
}),
react(),
unhead(),
autoImport({
dts: "./.generated/auto-import.d.ts",
include: [/\.[jt]sx?$/],
imports: [
{
from: "unhead",
imports: [
"getActiveHead",
{ name: "useHead", as: "withHead" },
{ name: "useSeoMeta", as: "withSeoMeta" },
{ name: "useHeadSafe", as: "withHeadSafe" },
],
},
],
}),
],
});