hide scrollbars; fix typo in webpack

This commit is contained in:
AtHeartEngineer
2023-01-30 08:52:52 +00:00
parent 5ab4788d38
commit 9f86717574
3 changed files with 10 additions and 1 deletions

View File

@@ -4,6 +4,11 @@
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<title>Animated Background Demo</title>
<style>
body {
overflow: hidden;
}
</style>
<script defer src="bundle.js"></script></head>
<body>

View File

@@ -4,6 +4,11 @@
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<title>Animated Background Demo</title>
<style>
body {
overflow: hidden;
}
</style>
</head>
<body>

View File

@@ -18,7 +18,6 @@ module.exports = {
outDir: path.resolve(__dirname, "docs"),
release: true,
target: "web",
args: "--no-typescript",
})
],
mode: 'development',