Home
/
outliner.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94b1162
)
fix build missing env var
author
xangelo
<git@xangelo.ca>
Wed, 25 Jan 2023 18:37:10 +0000
(13:37 -0500)
committer
xangelo
<git@xangelo.ca>
Wed, 25 Jan 2023 18:37:10 +0000
(13:37 -0500)
.gitignore
patch
|
blob
|
history
webpack.config.js
patch
|
blob
|
history
diff --git
a/.gitignore
b/.gitignore
index 8d00153cdb72ade8806d51c1ce3cb895dae4cd9c..7ae7caf830f581d2bcee9342225f5c05ec14c929 100644
(file)
--- a/
.gitignore
+++ b/
.gitignore
@@
-1,3
+1,3
@@
node_modules/
*.txt
-*.js
+
public/*/
*.js
diff --git
a/webpack.config.js
b/webpack.config.js
index 4380384627584bcf40fbd43c81f612afbde6e107..1982ddd9df2fe945bf5c875332f9878c1d03c196 100644
(file)
--- a/
webpack.config.js
+++ b/
webpack.config.js
@@
-6,7
+6,7
@@
const env = process.env.ENVIRONMENT || 'development';
module.exports = {
mode: env,
- devtool: env === '
environ
ment' ? "inline-source-map" : false,
+ devtool: env === '
develop
ment' ? "inline-source-map" : false,
entry: {
main: "./src/client.ts",
},