CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
31 lines
681 B
TypeScript
31 lines
681 B
TypeScript
import type { WxtViteConfig } from 'wxt'
|
|
|
|
import UnoCSS from 'unocss/vite'
|
|
|
|
import { defineConfig } from 'wxt'
|
|
|
|
type VitePlugin = NonNullable<WxtViteConfig['plugins']>[number]
|
|
|
|
// See https://wxt.dev/api/config.html
|
|
export default defineConfig({
|
|
modules: ['@wxt-dev/module-vue'],
|
|
manifest: {
|
|
name: 'Moeka Web Extension',
|
|
description: 'Capture web context (videos, pages, subtitles) for Project Moeka.',
|
|
permissions: ['storage', 'tabs'],
|
|
optional_host_permissions: [
|
|
'*://*/*',
|
|
],
|
|
action: {
|
|
default_title: 'Moeka Web Extension',
|
|
},
|
|
},
|
|
vite: () => {
|
|
return {
|
|
plugins: [
|
|
UnoCSS() as VitePlugin,
|
|
],
|
|
}
|
|
},
|
|
})
|