develop #26

Merged
vex merged 48 commits from develop into main 2025-04-21 15:14:19 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit acb4622f56 - Show all commits

View File

@ -19,6 +19,6 @@
<h2>Collapsed Sidebar</h2>
<p>Content...</p>
</div>
<script src="/scripts/example.js"></script>
<script src="example.js"></script>
</body>
</html>

View File

@ -15,8 +15,8 @@ app.use(session({
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, 'static')));
app.use(express.static(path.join(__dirname, '/scripts')));
app.use(express.static(path.join(__dirname, '/static')));
const getIndexRoute = require('./scripts/routes/other/route-index');