mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-16 03:32:17 +08:00
ace6e37950
Some checks are pending
Build / windows (arm64) (push) Waiting to run
Build / windows (ia32) (push) Waiting to run
Build / windows (x64) (push) Waiting to run
Build / windows7 (ia32) (push) Waiting to run
Build / windows7 (x64) (push) Waiting to run
Build / linux (arm64) (push) Waiting to run
Build / linux (x64) (push) Waiting to run
Build / macos (arm64) (push) Waiting to run
Build / macos (x64) (push) Waiting to run
Build / updater (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-bin) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-electron) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-electron-bin) (push) Blocked by required conditions
Build / aur-git-updater (push) Waiting to run
Build / Update WinGet Package (push) Blocked by required conditions
Build / Update Homebrew cask (push) Blocked by required conditions
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { resolve } from 'path'
|
|
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
|
|
import react from '@vitejs/plugin-react'
|
|
// https://github.com/vdesjs/vite-plugin-monaco-editor/issues/21#issuecomment-1827562674
|
|
import monacoEditorPluginModule from 'vite-plugin-monaco-editor'
|
|
const isObjectWithDefaultFunction = (
|
|
module: unknown
|
|
): module is { default: typeof monacoEditorPluginModule } =>
|
|
module != null &&
|
|
typeof module === 'object' &&
|
|
'default' in module &&
|
|
typeof module.default === 'function'
|
|
const monacoEditorPlugin = isObjectWithDefaultFunction(monacoEditorPluginModule)
|
|
? monacoEditorPluginModule.default
|
|
: monacoEditorPluginModule
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
plugins: [externalizeDepsPlugin()]
|
|
},
|
|
preload: {
|
|
plugins: [externalizeDepsPlugin()]
|
|
},
|
|
renderer: {
|
|
resolve: {
|
|
alias: {
|
|
'@renderer': resolve('src/renderer/src')
|
|
}
|
|
},
|
|
plugins: [
|
|
react(),
|
|
monacoEditorPlugin({
|
|
languageWorkers: ['editorWorkerService', 'typescript', 'css'],
|
|
customDistPath: (_, out) => `${out}/monacoeditorwork`,
|
|
customWorkers: [
|
|
{
|
|
label: 'yaml',
|
|
entry: 'monaco-yaml/yaml.worker'
|
|
}
|
|
]
|
|
})
|
|
]
|
|
}
|
|
})
|