-
Notifications
You must be signed in to change notification settings - Fork 4
/
vite.config.js
44 lines (43 loc) · 993 Bytes
/
vite.config.js
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 { defineConfig } from 'vite'
import path from 'path'
import { createVuePlugin } from 'vite-plugin-vue2'
import envCompatible from 'vite-plugin-env-compatible'
import { createHtmlPlugin } from 'vite-plugin-html'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [
{
find: /^~/,
replacement: '',
},
{
find: '@',
replacement: path.resolve(__dirname, './src'), //eslint-disable-line
},
],
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
},
plugins: [
createVuePlugin({ jsx: true }),
envCompatible(),
createHtmlPlugin({
inject: {
data: {
title: 'bilibili-comment2png',
},
},
}),
],
base: './',
build: {},
server: {
proxy: {
'/bili.api': {
target: 'https://api.bilibili.com',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/bili.api/, ''),
},
},
},
})