forked from igdownloader/InstagramDownloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
85 lines (80 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
/*
* Copyright (c) 2021. HuiiBuh
* This file (webpack.config.js) is part of InstagramDownloader which is released under
* GNU LESSER GENERAL PUBLIC LICENSE.
* You are not allowed to use this code or this file for another project without
* linking to the original source AND open sourcing your code.
*/
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const BuildExtensionPlugin = require('./src/build');
const webpackConfig = {
node: {
global: false,
},
entry: {
extension: "/src/ts/index.ts",
background: "/src/ts/background/BackgroundMessageHandler.ts",
},
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [
// Extract and save the final CSS.
MiniCssExtractPlugin.loader,
// Load the CSS, set url = false to prevent following urls to fonts and images.
{loader: "css-loader", options: {url: false, importLoaders: 1}},
// Load the SCSS/SASS
{loader: 'sass-loader'},
],
},
],
},
resolve: {
extensions: ['.ts', '.js'],
},
output: {
filename: 'js/[name].js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new MiniCssExtractPlugin({
filename: 'css/[name].css',
chunkFilename: '[id].css',
}),
new HtmlWebpackPlugin({
template: 'src/options/options.html',
filename: "options.html",
excludeChunks: ["extension", "background"],
}),
new webpack.ProvidePlugin({
global: require.resolve('./src/global.js'),
}),
new BuildExtensionPlugin(),
],
};
module.exports = (env, argv) => {
webpackConfig.devtool = 'inline-source-map';
if (argv.mode === "production") {
webpackConfig.plugins.push(
new webpack.DefinePlugin({
PRODUCTION: JSON.stringify(true),
}),
);
} else {
webpackConfig.plugins.push(
new webpack.DefinePlugin({
PRODUCTION: JSON.stringify(false),
}),
);
}
return webpackConfig;
};