199 lines
6.7 KiB
TypeScript
199 lines
6.7 KiB
TypeScript
import { join, resolve } from 'node:path'
|
|
|
|
import VueI18n from '@intlify/unplugin-vue-i18n/vite'
|
|
import Vue from '@vitejs/plugin-vue'
|
|
import UnoCss from 'unocss/vite'
|
|
import Info from 'unplugin-info/vite'
|
|
import VueRouter from 'unplugin-vue-router/vite'
|
|
import Yaml from 'unplugin-yaml/vite'
|
|
import Inspect from 'vite-plugin-inspect'
|
|
import VitePluginVueDevTools from 'vite-plugin-vue-devtools'
|
|
import Layouts from 'vite-plugin-vue-layouts'
|
|
import VueMacros from 'vue-macros/vite'
|
|
|
|
import { Download } from '@proj-airi/unplugin-fetch'
|
|
import { DownloadLive2DSDK } from '@proj-airi/unplugin-live2d-sdk'
|
|
import { templateCompilerOptions } from '@tresjs/core'
|
|
import { defineConfig } from 'electron-vite'
|
|
|
|
const stageUIAssetsRoot = resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-ui', 'src', 'assets'))
|
|
const sharedCacheDir = resolve(join(import.meta.dirname, '..', '..', '.cache'))
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
plugins: [Info()],
|
|
build: {
|
|
rolldownOptions: {
|
|
output: {
|
|
// https://github.com/lobehub/lobehub/blob/6ecba929b738e1259e15d17e7643941e015324ee/apps/desktop/electron.vite.config.ts#L54
|
|
// Prevent debug package from being bundled into index.js to avoid side-effect pollution
|
|
manualChunks(id) {
|
|
if (id.includes('node_modules/debug')) {
|
|
return 'vendor-debug'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
preload: {
|
|
build: {
|
|
lib: {
|
|
entry: {
|
|
'index': resolve(join(import.meta.dirname, 'src', 'preload', 'index.ts')),
|
|
'beat-sync': resolve(join(import.meta.dirname, 'src', 'preload', 'beat-sync.ts')),
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
},
|
|
renderer: {
|
|
// Thanks to [@Maqsyo](https://github.com/Maqsyo)
|
|
// https://github.com/alex8088/electron-vite/issues/99#issuecomment-1862671727
|
|
base: './',
|
|
|
|
build: {
|
|
rolldownOptions: {
|
|
input: {
|
|
'main': resolve(join(import.meta.dirname, 'src', 'renderer', 'index.html')),
|
|
'beat-sync': resolve(join(import.meta.dirname, 'src', 'renderer', 'beat-sync.html')),
|
|
},
|
|
},
|
|
},
|
|
|
|
optimizeDeps: {
|
|
exclude: [
|
|
// Internal Packages
|
|
'@proj-airi/stage-ui/*',
|
|
'@proj-airi/drizzle-duckdb-wasm',
|
|
'@proj-airi/drizzle-duckdb-wasm/*',
|
|
'@proj-airi/electron-screen-capture',
|
|
|
|
// Static Assets: Models, Images, etc.
|
|
'src/renderer/public/assets/*',
|
|
|
|
// Live2D SDK
|
|
'@framework/live2dcubismframework',
|
|
'@framework/math/cubismmatrix44',
|
|
'@framework/type/csmvector',
|
|
'@framework/math/cubismviewmatrix',
|
|
'@framework/cubismdefaultparameterid',
|
|
'@framework/cubismmodelsettingjson',
|
|
'@framework/effect/cubismbreath',
|
|
'@framework/effect/cubismeyeblink',
|
|
'@framework/model/cubismusermodel',
|
|
'@framework/motion/acubismmotion',
|
|
'@framework/motion/cubismmotionqueuemanager',
|
|
'@framework/type/csmmap',
|
|
'@framework/utils/cubismdebug',
|
|
'@framework/model/cubismmoc',
|
|
],
|
|
},
|
|
|
|
resolve: {
|
|
alias: {
|
|
'@proj-airi/server-sdk': resolve(join(import.meta.dirname, '..', '..', 'packages', 'server-sdk', 'src')),
|
|
'@proj-airi/i18n': resolve(join(import.meta.dirname, '..', '..', 'packages', 'i18n', 'src')),
|
|
'@proj-airi/stage-ui': resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-ui', 'src')),
|
|
'@proj-airi/stage-pages': resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-pages', 'src')),
|
|
'@proj-airi/stage-shared': resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-shared', 'src')),
|
|
},
|
|
},
|
|
|
|
server: {
|
|
warmup: {
|
|
clientFiles: [
|
|
`${resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-ui', 'src'))}/*.vue`,
|
|
`${resolve(join(import.meta.dirname, '..', '..', 'packages', 'stage-pages', 'src'))}/*.vue`,
|
|
],
|
|
},
|
|
},
|
|
|
|
worker: {
|
|
format: 'es',
|
|
rollupOptions: {
|
|
output: {
|
|
inlineDynamicImports: false,
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
Info(),
|
|
|
|
{
|
|
name: 'proj-airi:defines',
|
|
config(ctx) {
|
|
const define: Record<string, any> = {
|
|
'import.meta.env.RUNTIME_ENVIRONMENT': '\'electron\'',
|
|
}
|
|
if (ctx.mode === 'development') {
|
|
define['import.meta.env.URL_MODE'] = '\'server\''
|
|
}
|
|
if (ctx.mode === 'production') {
|
|
define['import.meta.env.URL_MODE'] = '\'file\''
|
|
}
|
|
|
|
return { define }
|
|
},
|
|
},
|
|
|
|
Inspect(),
|
|
|
|
Yaml(),
|
|
|
|
VueMacros({
|
|
plugins: {
|
|
vue: Vue({
|
|
include: [/\.vue$/, /\.md$/],
|
|
...templateCompilerOptions,
|
|
}),
|
|
vueJsx: false,
|
|
},
|
|
betterDefine: false,
|
|
}),
|
|
|
|
VueRouter({
|
|
dts: resolve(import.meta.dirname, 'src/renderer/typed-router.d.ts'),
|
|
routesFolder: [
|
|
{
|
|
src: resolve(import.meta.dirname, '..', '..', 'packages', 'stage-pages', 'src', 'pages'),
|
|
exclude: base => [
|
|
...base,
|
|
'**/settings/system/general.vue',
|
|
],
|
|
},
|
|
resolve(import.meta.dirname, 'src', 'renderer', 'pages'),
|
|
],
|
|
exclude: ['**/components/**'],
|
|
}),
|
|
|
|
VitePluginVueDevTools(),
|
|
|
|
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts
|
|
Layouts({
|
|
layoutsDirs: [
|
|
resolve(import.meta.dirname, 'src', 'renderer', 'layouts'),
|
|
resolve(import.meta.dirname, '..', '..', 'packages', 'stage-layouts', 'src', 'layouts'),
|
|
],
|
|
pagesDirs: [resolve(import.meta.dirname, 'src', 'renderer', 'pages')],
|
|
}),
|
|
|
|
UnoCss(),
|
|
|
|
// https://github.com/intlify/bundle-tools/tree/main/packages/unplugin-vue-i18n
|
|
VueI18n({
|
|
runtimeOnly: true,
|
|
compositionOnly: true,
|
|
fullInstall: true,
|
|
}),
|
|
|
|
DownloadLive2DSDK(),
|
|
Download('https://dist.ayaka.moe/live2d-models/hiyori_free_zh.zip', 'hiyori_free_zh.zip', 'live2d/models', { parentDir: stageUIAssetsRoot, cacheDir: sharedCacheDir }),
|
|
Download('https://dist.ayaka.moe/live2d-models/hiyori_pro_zh.zip', 'hiyori_pro_zh.zip', 'live2d/models', { parentDir: stageUIAssetsRoot, cacheDir: sharedCacheDir }),
|
|
Download('https://dist.ayaka.moe/vrm-models/VRoid-Hub/AvatarSample-A/AvatarSample_A.vrm', 'AvatarSample_A.vrm', 'vrm/models/AvatarSample-A', { parentDir: stageUIAssetsRoot, cacheDir: sharedCacheDir }),
|
|
Download('https://dist.ayaka.moe/vrm-models/VRoid-Hub/AvatarSample-B/AvatarSample_B.vrm', 'AvatarSample_B.vrm', 'vrm/models/AvatarSample-B', { parentDir: stageUIAssetsRoot, cacheDir: sharedCacheDir }),
|
|
],
|
|
},
|
|
})
|