Files
WebChat/wxt.config.ts
2025-05-21 21:18:29 +08:00

57 lines
1.2 KiB
TypeScript

import path from 'node:path'
import { defineConfig } from 'wxt'
import react from '@vitejs/plugin-react'
import { name, displayName, homepage } from './package.json'
import svgr from 'vite-plugin-svgr'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
srcDir: path.resolve('src'),
imports: false,
entrypointsDir: 'app',
webExt: {
startUrls: ['https://www.example.com/']
},
manifestVersion: 3,
manifest: ({ browser }) => {
const common = {
name: displayName,
permissions: ['storage', 'notifications', 'tabs'],
homepage_url: homepage,
icons: {
'16': 'logo.png',
'32': 'logo.png',
'48': 'logo.png',
'128': 'logo.png'
},
action: {}
}
return {
chrome: {
...common
},
firefox: {
...common,
browser_specific_settings: {
gecko: {
id: 'molvqingtai@gmail.com'
}
}
}
}[browser]
},
vite: (env) => ({
define: {
__DEV__: env.mode === 'development',
__NAME__: JSON.stringify(name)
},
plugins: [
react(),
tailwindcss(),
svgr({
include: '**/*.svg'
})
]
})
})