comctx
Version:
Use RPC to communicate easily across contexts in any JavaScript environment.
20 lines (18 loc) • 416 B
text/typescript
import { defineConfig } from 'wxt'
import path from 'node:path'
import { name } from './package.json'
// See https://wxt.dev/api/config.html
export default defineConfig({
srcDir: path.resolve('src'),
entrypointsDir: 'app',
imports: false,
webExt: {
startUrls: ['https://www.example.com/']
},
manifest: () => {
return {
name: name,
permissions: ['tabs', 'webNavigation']
}
}
})