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'
|
|
|
|
|
|
|
|
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: {
|
2024-09-27 02:09:47 +00:00
|
|
|
permissions: ['storage']
|
|
|
|
// browser_specific_settings: {
|
|
|
|
// gecko: {
|
|
|
|
// id: 'molvqingtai@gmail.com'
|
|
|
|
// }
|
|
|
|
// }
|
2023-12-01 05:33:49 +00:00
|
|
|
},
|
2024-09-27 00:20:49 +00:00
|
|
|
vite: (env) => ({
|
2023-11-04 18:18:09 +00:00
|
|
|
define: {
|
2024-09-27 00:20:49 +00:00
|
|
|
__DEV__: env.mode === 'development',
|
2023-11-04 18:18:09 +00:00
|
|
|
__NAME__: JSON.stringify(name)
|
|
|
|
},
|
|
|
|
plugins: [react()]
|
|
|
|
})
|
|
|
|
})
|