You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./static/images/Maya.obj 1:0
Module parse failed: Unexpected character '#' (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> # Alias OBJ Model File
| # Exported from SketchUp, (c) 2000-2012 Trimble Navigation Limited
| # File units = inches
The text was updated successfully, but these errors were encountered:
I did not use this plugin.Later i used threejs.I had to change my file loader configuration in my nextjs project.
To serve assets correctly with file-loader, configure correct location of _next static dir as following:
{
loader: 'file-loader',
options: {
publicPath: "/_next/static/images", // the path access the assets via url
outputPath: "static/images/", // where to store on disk
}
}
I am trying to show a .obj file.
I am gettting this error
The text was updated successfully, but these errors were encountered: