phanpy/vite.config.js

25 wiersze
679 B
JavaScript
Czysty Zwykły widok Historia

2022-12-10 09:14:48 +00:00
import preact from '@preact/preset-vite';
import { execSync } from 'child_process';
import { resolve } from 'path';
import { defineConfig, splitVendorChunkPlugin } from 'vite';
2022-12-10 09:14:48 +00:00
const commitHash = execSync('git rev-parse --short HEAD').toString().trim();
2022-12-10 09:14:48 +00:00
// https://vitejs.dev/config/
export default defineConfig({
define: {
__BUILD_TIME__: JSON.stringify(Date.now()),
__COMMIT_HASH__: JSON.stringify(commitHash),
},
plugins: [preact(), splitVendorChunkPlugin()],
build: {
sourcemap: true,
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
compose: resolve(__dirname, 'compose/index.html'),
},
},
},
2022-12-10 09:14:48 +00:00
});