-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxt.config.ts
More file actions
44 lines (43 loc) · 1.25 KB
/
wxt.config.ts
File metadata and controls
44 lines (43 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { defineConfig } from 'wxt';
export default defineConfig({
srcDir: '.',
modules: ['@wxt-dev/i18n/module', '@wxt-dev/module-react'],
hooks: {
'build:manifestGenerated': (_, manifest) => {
delete manifest.side_panel;
},
},
vite: () => ({
optimizeDeps: {
include: ['@/shared/schema/jsonresume-v1.validate.cjs'],
},
}),
manifest: {
default_locale: 'en',
name: 'Fillo',
description: 'Turn your resume into effortless job applications. Fillo keeps your experience at your fingertips and lands applications in just a few clicks.',
version: '0.1.0',
manifest_version: 3,
action: {
default_title: 'Fillo',
},
options_page: 'options.html',
permissions: ['storage', 'unlimitedStorage', 'activeTab', 'sidePanel', 'contextMenus', 'tabs'],
host_permissions: [
'https://api.openai.com/*',
'https://generativelanguage.googleapis.com/*',
'https://*.greenhouse.io/*',
'https://*.lever.co/*',
'https://*.myworkdayjobs.com/*',
'https://*.ashbyhq.com/*',
'https://*.smartrecruiters.com/*',
'https://*.workable.com/*',
],
web_accessible_resources: [
{
resources: ['pdf.worker.mjs'],
matches: ['<all_urls>'],
},
],
},
});