Skip to content

Latest commit

 

History

History
 
 

dist

A-Frame Builds

To include these builds, you can download and serve them locally.

To include the latest master build from a CDN, include the script below from the jsdelivr CDN:

<html>
  <head>
    <script src="https://cdn.jsdelivr.net/gh/aframevr/aframe@220998a93d9237bbbe70e8062c48e73f73ca7924/dist/aframe-master.min.js"></script>
  </head>
  <body>
    <a-scene>
      <!-- ... -->
    </a-scene>
  </body>
</html>

Release Builds

These builds are available via https://aframe.io/releases/x.x.x/<filename> where x.x.x is the latest stable version.

  • aframe-vx.x.x.min.js - Minified production build, recommended.
  • aframe-vx.x.x.min.js.map - Source maps for minified production build.
  • aframe-vx.x.x.js - Unminified build, for development or debugging.
  • aframe-vx.x.x.js.map - Source maps for unminified build.

Master Builds

These master builds are unstable bleeding-edge unstable builds that contain newer fixes or features from the master branch on GitHub, but may contain regressions or breaking changes.

If you're pointing to these builds via the jsDelivr CDN, we recommend locking it down to a commit hash rather than pointing directly at master such that your scene does not break unexpectedly.