mirror of
https://codeberg.org/dragongoose/safetwitch.git
synced 2024-11-02 22:23:59 +00:00
33 lines
785 B
TypeScript
33 lines
785 B
TypeScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
|
import { dirname, resolve } from 'node:path'
|
|
import { gitDescribeSync } from 'git-describe'
|
|
|
|
// Footer version
|
|
const gitVer = gitDescribeSync()
|
|
process.env.SAFETWITCH_COMMIT_HASH = gitVer.hash
|
|
process.env.SAFETWITCH_TAG = gitVer.tag!
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
VueI18nPlugin({
|
|
include: resolve(dirname(fileURLToPath(import.meta.url)), './src/locales/**'),
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
build: {
|
|
cssCodeSplit: true
|
|
},
|
|
envPrefix: 'SAFETWITCH_',
|
|
})
|
|
|