forked from extern/fediwall
9a00596ff1
Android boxes powering video walls are often quite old...
39 lines
951 B
TypeScript
39 lines
951 B
TypeScript
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";
|
|
import viteLegacy from "@vitejs/plugin-legacy";
|
|
|
|
let version;
|
|
|
|
try {
|
|
const gitInfo = gitDescribeSync();
|
|
if (gitInfo.tag) {
|
|
version = `${gitInfo.tag}`;
|
|
if (gitInfo.distance)
|
|
version += `-${gitInfo.distance}+${gitInfo.hash}`;
|
|
}
|
|
} catch { ; }
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
define: {
|
|
__VERSION__: JSON.stringify(version)
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
viteCompression(),
|
|
viteLegacy({
|
|
targets: 'last 2 versions and not dead, > 0.2%, Firefox ESR, Android >= 7'
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url))
|
|
}
|
|
}
|
|
});
|