md/wxt.config.ts
Honwhy Wang 57829696dd
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
feat: add support for wxt as to build chrome extension (#458)
2024-12-08 09:16:20 +08:00

38 lines
791 B
TypeScript

import { defineConfig } from 'wxt'
import ViteConfig from './vite.config'
export default defineConfig({
srcDir: `src`,
publicDir: `../public`,
extensionApi: `chrome`,
manifest: {
name: `公众号文章编辑器`,
version: `0.0.6`,
icons: {
256: `/mpmd/icon-256.png`,
},
permissions: [`storage`],
host_permissions: [
`https://*.github.com/*`,
`https://*.githubusercontent.com/*`,
`https://*.gitee.com/*`,
`https://*.weixin.qq.com/*`,
// 微信公众号图片
`https://*.qpic.cn/*`,
],
web_accessible_resources: [
{
resources: [`*.png`, `*.svg`],
matches: [`<all_urls>`],
},
],
},
analysis: {
open: true,
},
vite: () => ({
...ViteConfig,
base: `/`,
}),
})