38 lines
1.7 KiB
Markdown
38 lines
1.7 KiB
Markdown
Here's a brief summary of each of these files and directories:<br/>
|
|
<br/>
|
|
📂 {rootDir}/<br/>
|
|
📁 .output/<br/>
|
|
📁 .wxt/<br/>
|
|
📁 assets/<br/>
|
|
📁 components/<br/>
|
|
📁 composables/<br/>
|
|
📁 entrypoints/<br/>
|
|
📁 hooks/<br/>
|
|
📁 modules/<br/>
|
|
📁 public/<br/>
|
|
📁 utils/<br/>
|
|
📄 .env<br/>
|
|
📄 .env.publish<br/>
|
|
📄 app.config.ts<br/>
|
|
📄 package.json<br/>
|
|
📄 tsconfig.json<br/>
|
|
📄 web-ext.config.ts<br/>
|
|
📄 wxt.config.ts<br/>
|
|
|
|
.output/: All build artifacts will go here<br/>
|
|
.wxt/: Generated by WXT, it contains TS config<br/>
|
|
assets/: Contains all CSS, images, and other assets that should be processed by WXT<br/>
|
|
components/: Auto-imported by default, contains UI components<br/>
|
|
composables/: Auto-imported by default, contains source code for your project's composable functions for Vue<br/>
|
|
entrypoints/: Contains all the entrypoints that get bundled into your extension<br/>
|
|
hooks/: Auto-imported by default, contains source code for your project's hooks for React and Solid<br/>
|
|
modules/: Contains local WXT Modules for your project<br/>
|
|
public/: Contains any files you want to copy into the output folder as-is, without being processed by WXT<br/>
|
|
utils/: Auto-imported by default, contains generic utilities used throughout your project<br/>
|
|
.env: Contains Environment Variables<br/>
|
|
.env.publish: Contains Environment Variables for publishing<br/>
|
|
app.config.ts: Contains Runtime Config<br/>
|
|
package.json: The standard file used by your package manager<br/>
|
|
tsconfig.json: Config telling TypeScript how to behave<br/>
|
|
web-ext.config.ts: Configure Browser Startup<br/>
|
|
wxt.config.ts: The main config file for WXT projects<br/> |