-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
35 lines (33 loc) · 892 Bytes
/
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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import webExtension, { readJsonFile } from "vite-plugin-web-extension";
import path from "node:path";
function generateManifest() {
const manifest = readJsonFile("src/manifest.json");
const pkg = readJsonFile("package.json");
return {
name: pkg.name,
description: pkg.description,
version: pkg.version,
...manifest,
};
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
webExtension({
manifest: generateManifest,
disableAutoLaunch: true,
watchFilePaths: ["src/**/*", "manifest.json", "src/pages/**/*"],
}),
],
resolve: {
alias: {
// In dev mode, make sure fast refresh works
"/@react-refresh": path.resolve(
"node_modules/@vitejs/plugin-react-swc/refresh-runtime.js"
),
},
},
});