diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-25 18:31:23 +0100 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-25 18:31:23 +0100 |
commit | 60e47b9cb1127042c5567c2632936295fd210be5 (patch) | |
tree | e8b7b02a8f37f7044c8338260fb14538d61ebe85 /www | |
parent | 671c932aea9304aba4e79f5b12bea4c705fb5d93 (diff) | |
download | genpass-60e47b9cb1127042c5567c2632936295fd210be5.tar.gz genpass-60e47b9cb1127042c5567c2632936295fd210be5.tar.bz2 genpass-60e47b9cb1127042c5567c2632936295fd210be5.zip |
fix: Move build output
Move from `www/dist` to `public`. This should solve gitlab pages
returning 404.
Diffstat (limited to 'www')
-rw-r--r-- | www/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
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", |