"copy" UI related things from chrome
This commit is contained in:
26
projects/firefox/custom-webpack.config.ts
Normal file
26
projects/firefox/custom-webpack.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user