-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
56 lines (53 loc) · 1.32 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
import path from "path";
import { defineConfig } from "vite";
//import { viteCommonjs, esbuildCommonjs } from "@originjs/vite-plugin-commonjs";
import vue from "@vitejs/plugin-vue";
import { createHtmlPlugin } from "vite-plugin-html";
console.log(path.basename(path.resolve(__dirname)));
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [
{
find: "@",
replacement: path.resolve(__dirname, "src"),
},
// not mandatory
{
find: "jquery",
replacement: path.resolve(
__dirname,
"node_modules/jquery/dist/jquery.min.js"
),
},
// not mandatory, only to force min.js
{
find: "datatables.net",
replacement: path.resolve(
__dirname,
"node_modules/datatables.net/js/jquery.dataTables.min.js"
),
},
{
find: "datatables.net-css",
replacement: path.resolve(
__dirname,
"node_modules/datatables.net-dt/css/jquery.dataTables.min.css"
),
},
],
extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json", ".vue"],
},
plugins: [
vue(),
createHtmlPlugin({
inject: {
data: {
title: "DataTable.net with ViteJS and VueJs",
},
},
}),
],
base: "",
build: {},
});