-
-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathvite.config.js
More file actions
29 lines (25 loc) · 731 Bytes
/
vite.config.js
File metadata and controls
29 lines (25 loc) · 731 Bytes
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
import { defineConfig, loadEnv } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig(({mode}) => {
const venv = loadEnv(mode, process.cwd(), '')
const env = Object.keys(venv).filter((item) => item.startsWith("VITE_")).reduce((cur, key) => { return Object.assign(cur, { [key]: venv[key] })}, {}) ;
const htmlPlugin = () => {
return {
name: "html-transform",
transformIndexHtml(html) {
return html.replace(/%(.*?)%/g, function (match, p1) {
return env[p1];
});
},
};
};
return {
plugins: [svelte(), htmlPlugin()],
server: {
watch: {
usePolling: false
}
}
}
});