-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
49 lines (45 loc) · 920 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
45
46
47
48
49
import { defineConfig, loadEnv } from 'vite'
import fs from 'fs';
// export default defineConfig(({ root: "app", envDir: "../" }) => {
// }
export default defineConfig({
root: "src/client",
// root: ".",
mode: "development",
envDir: "../../",
// envDir: ".",
// publicDir: '../public',
// publicDir: './app',
server: {
port: 3001
},
// build: {
// rollupOptions: {
// input: 'app/index.js',
// output: {
// dir: 'public',
// entryFileNames: 'assets/[name].js',
// sourcemap: true,
// },
// },
// },
})
// })
// https: {
// key: fs.readFileSync('key.pem'),
// cert: fs.readFileSync('cert.pem')
// },
// server: {
// port: 3333,
// https: true,
// }
//
// OR
//
// server: {
// https: {
// key: fs.readFileSync('key.pem'),
// cert: fs.readFileSync('cert.pem')
// },
// open: true
// }