first chrome implementation
This commit is contained in:
22
projects/chrome/custom-webpack.config.ts
Normal file
22
projects/chrome/custom-webpack.config.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
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,
|
||||
},
|
||||
},
|
||||
} as Configuration;
|
||||
Reference in New Issue
Block a user