-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
140 lines (136 loc) · 3.46 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable no-undef */
const webpack = require("webpack");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const path = require("path");
const config = {
entry: path.resolve(__dirname, "source/index.js"),
module: {
rules: [
{
test: /\.css$/i,
exclude: /node_modules/,
use: ["style-loader", "css-loader"],
},
{
test: /\.scss$/i,
exclude: /node_modules/,
use: [
"style-loader",
{
loader: "css-loader",
options: {
importLoaders: true,
},
},
// "postcss-loader",
"sass-loader",
],
},
{
test: /\.tsx?$/i,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.(js|jsx)$/i,
loader: "babel-loader",
exclude: [/node_modules/],
options: { presets: ["@babel/env"] },
},
{
test: /\.svg$/,
use: "@svgr/webpack",
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist/"),
publicPath: "/experiment/dist/",
},
};
// const plugins = [new CleanWebpackPlugin()];
const plugins = [];
const redirect_uri = (uri) =>
`https://gitlab.pavlovia.org//oauth/authorize`.concat(
`?client_id=63785db109412d3b2a6179ada78be8a3411936184b467f678c8251fda96d8c14`,
`&scope=api&response_type=token&response_mode=query`,
`&redirect_uri=${uri}`
);
module.exports = (env) => {
if (env.development) {
return Object.assign({}, config, {
mode: "development",
optimization: {
minimize: false,
},
plugins: [
...plugins,
new webpack.ProgressPlugin(),
new webpack.DefinePlugin({
"process.env.debug": true,
"process.env.REDIRECT_URL": JSON.stringify(
redirect_uri("http%3A%2F%2Flocalhost%3A5500%2Fredirect")
),
"process.env.GITHUB_PAT": JSON.stringify(""),
}),
],
// watch: true,
devtool: "source-map",
devServer: {
port: 5500,
static: {
directory: path.join(__dirname, "../"),
publicPath: "/",
watch: false,
},
open: true,
hot: true,
liveReload: true,
// devMiddleware: {
// writeToDisk: true,
// },
watchFiles: {
paths: [
path.join(__dirname, "source/**/*"),
path.join(__dirname, "experiment/**/*"),
],
options: {
ignored: /dist/,
},
},
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "*",
"Access-Control-Allow-Methods": "*",
},
},
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist/"),
publicPath: "/experiment/dist/",
},
});
} else if (env.production) {
return Object.assign({}, config, {
mode: "production",
optimization: {
minimize: true,
},
plugins: [
...plugins,
new webpack.DefinePlugin({
"process.env.debug": false,
"process.env.REDIRECT_URL": JSON.stringify(
redirect_uri("https%3A%2F%2Feasyeyes.app%2Fredirect")
),
"process.env.GITHUB_PAT": JSON.stringify(""),
}),
],
});
}
};