WebChat/wxt.config.ts

31 lines
638 B
TypeScript
Raw Normal View History

2023-11-05 18:56:50 +00:00
import path from 'node:path'
2023-11-04 18:18:09 +00:00
import { defineConfig } from 'wxt'
import react from '@vitejs/plugin-react'
import { name } from './package.json'
const isDev = process.env.NODE_ENV === 'development'
export default defineConfig({
2023-11-05 18:56:50 +00:00
srcDir: path.resolve('src'),
2023-11-30 08:50:18 +00:00
imports: false,
2024-09-16 07:47:36 +00:00
entrypointsDir: 'app',
2023-11-04 18:18:09 +00:00
runner: {
startUrls: ['https://www.example.com/']
},
2023-12-01 05:33:49 +00:00
manifest: {
2023-12-05 17:43:26 +00:00
permissions: ['storage'],
browser_specific_settings: {
gecko: {
id: 'molvqingtai@gmail.com'
}
}
2023-12-01 05:33:49 +00:00
},
2023-11-04 18:18:09 +00:00
vite: () => ({
define: {
__DEV__: isDev,
__NAME__: JSON.stringify(name)
},
plugins: [react()]
})
})