We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a279d1 commit ffec536Copy full SHA for ffec536
crammit.yaml
@@ -0,0 +1,6 @@
1
+output: dist
2
+fingerprint: false
3
+
4
+css:
5
+ bundle:
6
+ - style/src/*.css
webpack.config.js
@@ -0,0 +1,15 @@
+module.exports = {
+ entry: [
+ "./js/src/init.js",
+ "./js/src/alerter.js",
+ "./js/src/controls.js",
+ "./js/src/map.js",
7
+ "./js/src/markers.js",
8
+ "./js/src/objects.js",
9
+ "./js/src/socket.js",
10
+ "./js/src/utils.js",
11
+ ],
12
+ output: {
13
+ filename: "bundle.js"
14
+ }
15
+};
0 commit comments