-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
69 lines (66 loc) · 1.48 KB
/
vue.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
const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require('path')
const ExtensionReloader = require('webpack-ext-reloader')
const isDev = process.env.NODE_ENV === 'development'
// copy file to dist
const copyFiles = [
{
from: path.resolve('src/manifest.json'),
to: path.resolve("dist")
},
{
from: path.resolve('assets'),
to: path.resolve('dist/assets'),
},
{
from: path.resolve('static'),
to: path.resolve('dist/static'),
},
]
// dev hot reload
// https://github.com/SimplifyJobs/webpack-ext-reloader
const hotReload = isDev
? [
new ExtensionReloader({
reloadPage: true,
manifest: path.resolve(__dirname, 'src/manifest.json'),
}),
]
: []
module.exports = {
productionSourceMap: false,
pages: {
popup: {
entry: `src/popup/index.js`,
template: `pages/popup.html`,
filename: `pages/popup.html`
},
options: {
entry: `src/options/index.js`,
template: `pages/options.html`,
filename: `pages/options.html`
}
},
configureWebpack: {
mode: isDev ? 'development' : 'production',
entry: {
content: "./src/content/index.js",
background: "./src/background/index.js"
},
output: {
filename: '[name].js'
},
plugins: [
new CopyWebpackPlugin({
patterns: copyFiles
}),
...hotReload
],
},
css: {
extract: false
},
chainWebpack: config => {
config.optimization.delete('splitChunks')
}
}