Is hutopy finally trilangual

This commit is contained in:
2025-04-19 01:56:59 -04:00
parent af71c5e952
commit b1681252cc
140 changed files with 5441 additions and 1085 deletions

View File

@@ -2,6 +2,8 @@ import {fileURLToPath, URL} from 'node:url'
import {defineConfig, loadEnv} from 'vite'
import vue from '@vitejs/plugin-vue'
import fs from 'fs';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
import { resolve } from 'path'
// https://vitejs.dev/config/
export default defineConfig(({mode}) => {
@@ -9,7 +11,10 @@ export default defineConfig(({mode}) => {
const env = loadEnv(mode, process.cwd(), '')
return {
plugins: [
vue()
vue(),
VueI18nPlugin({
include: resolve(__dirname, 'src/locales/**')
})
],
server: {
https: {