From 2621a44aa1b4131f724e5a92efccea15d8a33980 Mon Sep 17 00:00:00 2001 From: kaiyou <pierre@jaury.eu> Date: Tue, 10 Sep 2019 22:28:36 +0200 Subject: [PATCH] Move assets to trurt/assets --- .gitignore | 1 + webpack.config.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index dd5075d..224daaa 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ __pycache__ /package-lock.json /node_modules /venv +/trurt/static diff --git a/webpack.config.js b/webpack.config.js index 7363043..6a40f8e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,7 +9,7 @@ module.exports = { vendor: "./assets/vendor.js" }, output: { - path: path.resolve(__dirname, "static/"), + path: path.resolve(__dirname, "trurt/static/"), filename: "[name].js" }, module: { @@ -58,4 +58,3 @@ module.exports = { }) ] } - -- GitLab