UNPKG
aframe-hotspots
Version:
latest (1.0.1)
1.0.1
1.0.0
A-Frame component for interactive VR hotspots with audio and scene transitions
aframe-hotspots
/
rollup.config.js
12 lines
(10 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { terser }
from
"rollup-plugin-terser"; export default {
input
:
"src/index.js"
, output: { file:
"dist/aframe-hotspots.min.js"
, format:
"umd"
, name:
"aframeHotspots"
, }, plugins: [
terser
()], };