forked from hacksu/kenthackenough-ui-2021
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.js
44 lines (43 loc) · 885 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';
import { viteCommonjs } from '@originjs/vite-plugin-commonjs';
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [
{
find: /^~/,
replacement: ''
},
{
find: '@',
replacement: path.resolve(__dirname, 'src')
}
],
extensions: [
'.mjs',
'.js',
'.ts',
'.jsx',
'.tsx',
'.json',
'.vue'
]
},
plugins: [
createVuePlugin({ jsx: true }),
viteCommonjs(),
envCompatible(),
createHtmlPlugin({
inject: {
data: {
title: 'kenthackenough-ui-2019'
}
}
})
],
build: {}
})