This commit is contained in:
sebseb7
2025-08-25 06:28:02 +02:00
parent eef1e3a789
commit b6ee4b7a4e
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>3D Cube Viewer</title>
<title>3D Model Viewer</title>
</head>
<body>
<div id="container">
@@ -13,7 +13,7 @@
</div>
<div id="info">
<h2>3D Cube Viewer</h2>
<h2>3D Model Viewer</h2>
<p>🖱️ Left click + drag: Rotate around model</p>
<p>🖱️ Right click + drag: Pan</p>
<p>⚙️ Mouse wheel: Zoom in/out</p>

View File

@@ -9,10 +9,10 @@ module.exports = (env, argv) => {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
path: path.resolve(__dirname, '../growheads_de/dist/3d/'),
filename: isProduction ? '[name].[contenthash].js' : '[name].js',
clean: true,
publicPath: '/'
publicPath: '/3d/'
},
module: {