From ba497dff59c27a276a5c3e7f5831955f63d78b52 Mon Sep 17 00:00:00 2001
From: protoclown <ornano@felinn.org>
Date: Tue, 21 Feb 2023 23:07:39 +0100
Subject: [PATCH] fix: wrong path for build static

---
 .gitignore        | 1 -
 webpack.config.js | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 79e3d92..2d56cea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,6 +5,5 @@ __pycache__
 /yarn.lock
 /node_modules
 /venv
-/static
 /hiboo/static
 .env
diff --git a/webpack.config.js b/webpack.config.js
index c7809ea..723430e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -15,7 +15,7 @@ module.exports = {
     vendor: './assets/vendor.js',
   },
   output: {
-    path: path.resolve(__dirname, 'static/'),
+    path: path.resolve(__dirname, 'hiboo/static/'),
     filename: '[name].js',
     assetModuleFilename: '[name][ext]',
   },
-- 
GitLab