aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 486814a..bc3bb1c 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,7 +7,7 @@ const dist = path.resolve(__dirname, 'build');
module.exports = {
entry: {
index: path.join(src, 'content'),
- settings: path.join(src, 'pages/settings'),
+ settings: path.join(src, 'settings'),
background: path.join(src, 'background'),
console: path.join(src, 'console')
},
@@ -50,7 +50,7 @@ module.exports = {
inject: false
}),
new HtmlWebpackPlugin({
- template: path.join(src, 'pages', 'settings.html'),
+ template: path.join(src, 'settings', 'index.html'),
filename: path.join(dist, 'settings.html'),
inject: false
})