mirror of
https://github.com/doocs/md.git
synced 2025-01-22 20:04:39 +08:00
d37aedb95d
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
* add example cloudflare worker proxy * use wsrv.nl to host image request in website
39 lines
981 B
TypeScript
39 lines
981 B
TypeScript
import { defineConfig } from 'wxt'
|
|
import ViteConfig from './vite.config'
|
|
|
|
export default defineConfig({
|
|
srcDir: `src`,
|
|
publicDir: `../public`,
|
|
extensionApi: `chrome`,
|
|
manifest: {
|
|
name: `公众号文章编辑器`,
|
|
description: `一款高度简洁的微信 Markdown 编辑器:支持 Markdown 语法、色盘取色、多图上传、一键下载文档、自定义 CSS 样式、一键重置等特性`,
|
|
version: `0.0.7`,
|
|
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: `/`,
|
|
}),
|
|
})
|