-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
76 lines (73 loc) · 2.34 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import path from 'path';
import { fileURLToPath } from 'url';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyPlugin from 'copy-webpack-plugin';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const config = {
mode: 'development',
devtool: 'inline-source-map',
entry: {
background: './src/background.js',
popup: './src/popup.js',
content: './src/content.js',
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js',
},
module: {
rules: [
{
test: /\.json$/,
type: 'asset/resource',
generator: {
filename: 'models/embeddings/jina-embeddings-v2-small-en-onnx/onnx_model/[name][ext]',
},
},
{
test: /\.onnx$/,
type: 'asset/resource',
generator: {
filename: 'models/embeddings/jina-embeddings-v2-small-en-onnx/onnx_model/[name][ext]',
},
},
{
test: /\.txt$/, // Add rule for .txt files
type: 'asset/resource',
generator: {
filename: 'prompts/[name][ext]',
},
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: './src/popup.html',
filename: 'popup.html',
inject: false, // Prevent automatic injection to avoid duplicate popup.js loads.
}),
new CopyPlugin({
patterns: [
{
from: 'public',
to: '.', // Copies to build folder
},
{
from: 'src/popup.css',
to: 'popup.css',
},
{
// Copy all files in the onnx_model directory
from: path.resolve(__dirname, 'models/embeddings/jina-embeddings-v2-small-en-onnx'),
to: 'models/embeddings/jina-embeddings-v2-small-en-onnx',
},
{
// Add copy pattern for prompt files
from: 'src/prompts',
to: 'prompts', // Output to build folder
},
],
}),
],
};
export default config;