fediwall/vite.config.ts

34 lines
708 B
TypeScript
Raw Normal View History

2023-07-14 01:10:29 +02:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import viteCompression from 'vite-plugin-compression';
import { gitDescribeSync } from 'git-describe';
var version;
try {
var gitInfo = gitDescribeSync();
if(gitInfo.tag) {
version = `${gitInfo.tag}`;
if (gitInfo.distance)
version += `-${gitInfo.distance}+${gitInfo.hash}`
}
} catch { }
2023-07-14 01:10:29 +02:00
// https://vitejs.dev/config/
export default defineConfig({
base: "./",
define: {
__VERSION__: JSON.stringify(version)
},
2023-07-14 01:10:29 +02:00
plugins: [
vue(), viteCompression()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})