-
-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathvite.config.ts
55 lines (54 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
import react from "@vitejs/plugin-react";
import auto from "autoprefixer";
import * as path from "path";
import { webpackStats } from "rollup-plugin-webpack-stats";
import tailwindcss from "tailwindcss";
import nesting from "tailwindcss/nesting";
import { defineConfig } from "vite";
// import eslintPlugin from "vite-plugin-eslint";
// https://vitejs.dev/config/
export default defineConfig((conf) => ({
plugins: [react(), webpackStats()] as any,
optimizeDeps: {
// link: ['vite-react-ts-components'],
},
build: {
sourcemap: true,
},
css: {
postcss: {
plugins: [
nesting,
tailwindcss("../packages/shadcn/tailwind.config.js"), // Adjust the path as necessary
auto,
],
},
// postcss: "../packages/shadcn/postcss.config.js",
},
resolve: {
alias:
conf.command === "build"
? {}
: {
// Comment out the lines below to load a built version of blocknote
// or, keep as is to load live from sources with live reload working
"@blocknote/core": path.resolve(__dirname, "../packages/core/src/"),
"@blocknote/react": path.resolve(
__dirname,
"../packages/react/src/"
),
"@blocknote/ariakit": path.resolve(
__dirname,
"../packages/ariakit/src/"
),
"@blocknote/mantine": path.resolve(
__dirname,
"../packages/mantine/src/"
),
"@blocknote/shadcn": path.resolve(
__dirname,
"../packages/shadcn/src/"
),
},
},
}));