Loading local js files

On windows (VS Community using WebView) I’m trying to use the js files locally, no server. Is this possible?

This works and loads the obj files….

<script src="https://cdn.babylonjs.com/babylon.max.js" ></script>
<script src="https://cdn.babylonjs.com/loaders/babylonjs.loaders.js" ></script>

This works and loads the obj files….

<script src="https://cdn.babylonjs.com/babylon.max.js"></script>
<script src="babylonjs.loaders.min.js"></script>

This works but doesn’t load the obj files…

<script src="babylon.max.js" ></script>
<script src="babylonjs.loaders.min.js" ></script>

I thought it was missing additional .js files but I’ve tried adding them all.

Any help appreciated.

–Rob

Hello :slight_smile:

If the first works, the second should work exactly the same if they are the same files.
Are you sure you downloaded the https://cdn.babylonjs.com/babylon.max.js and put it in the same spot (publicly served) where you put babylonjs.loaders.min.js ?

I downloaded babylon.max.js again and it works. Not sure if I had an older or corrupt file.

thanks for the tips

–Rob