Basic rotating phone model

This commit is contained in:
2022-01-29 13:13:35 +03:00
parent 10e90d7faa
commit 6c8e85b381
13 changed files with 72521 additions and 104 deletions

10
vue.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
chainWebpack: (config) => {
config.module
.rule('file-loader')
.test(/\.obj$/)
.use('file-loader')
.loader('file-loader')
.end();
},
};