aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--www/webpack.config.js2
3 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 01c9c21..8001a44 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@ target/
bin/
pkg/
.idea/
+public/
npm_modules/
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1aeb1fa..6655399 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ pages:
- make
artifacts:
paths:
- - www/dist
+ - public
only:
refs:
- master
diff --git a/www/webpack.config.js b/www/webpack.config.js
index 6d82e1f..98cfec8 100644
--- a/www/webpack.config.js
+++ b/www/webpack.config.js
@@ -4,7 +4,7 @@ const path = require('path');
module.exports = {
entry: "./bootstrap.js",
output: {
- path: path.resolve(__dirname, "dist"),
+ path: path.resolve(__dirname, "../public"),
filename: "bootstrap.js",
},
mode: "development",