forked from M-Labs/web2019
Fix solvespace 3d models display
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
191d6a970b
commit
ddd49b71af
|
@ -9,7 +9,7 @@ layout_css = "col-12 col-md-10 mx-auto"
|
||||||
|
|
||||||
|
|
||||||
{% div() %}
|
{% div() %}
|
||||||
<script src="/js/hammer-2.0.8.js"></script>
|
<script src="/js/hammer.min.js"></script>
|
||||||
<script src="/js/three-r76.js"></script>
|
<script src="/js/three-r76.js"></script>
|
||||||
<script src="/js/SolveSpaceControls.js"></script>
|
<script src="/js/SolveSpaceControls.js"></script>
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,10 +1,12 @@
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: './static/js/shop.min.js', // change this to your entry point
|
entry: {
|
||||||
|
shop: './static/js/shop.min.js'
|
||||||
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.resolve(__dirname, './static/js'), // change this to your output path
|
path: path.resolve(__dirname, './static/js'),
|
||||||
filename: 'shop.bundle.js'
|
filename: '[name].bundle.js'
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
|
|
Loading…
Reference in New Issue