"copy" UI related things from chrome

This commit is contained in:
DEV Sam Hayes
2025-02-04 20:19:30 +01:00
parent 601ac8cd49
commit b20faf2359
100 changed files with 3514 additions and 362 deletions

View File

@@ -0,0 +1,26 @@
import type { Configuration } from 'webpack';
module.exports = {
entry: {
background: {
import: 'src/background.ts',
runtime: false,
},
'gooti-extension': {
import: 'src/gooti-extension.ts',
runtime: false,
},
'gooti-content-script': {
import: 'src/gooti-content-script.ts',
runtime: false,
},
prompt: {
import: 'src/prompt.ts',
runtime: false,
},
options: {
import: 'src/options.ts',
runtime: false,
},
},
} as Configuration;