forked from eadpucv/pix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
42 lines (40 loc) · 951 Bytes
/
vite.config.js
File metadata and controls
42 lines (40 loc) · 951 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
30
31
32
33
34
35
36
37
38
39
40
41
42
import { defineConfig } from 'vite';
import { resolve } from 'path';
import { cpSync, readFileSync } from 'fs';
const pkg = JSON.parse(readFileSync(resolve(__dirname, 'package.json'), 'utf-8'));
export default defineConfig({
base: '/pix/',
define: {
__APP_VERSION__: JSON.stringify(pkg.version)
},
root: '.',
publicDir: 'public',
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: 'index.html'
}
},
server: {
open: true
},
plugins: [
{
name: 'copy-icons',
closeBundle() {
// Copy icons directory to dist for production build
try {
cpSync(
resolve(__dirname, 'icons'),
resolve(__dirname, 'dist/icons'),
{ recursive: true }
);
console.log('Copied icons/ to dist/icons/');
} catch (e) {
console.warn('Could not copy icons:', e.message);
}
}
}
]
});