django-vue3-admin-web/node_modules/claygl/rollup.config.js
2025-10-20 21:21:14 +08:00

22 lines
418 B
JavaScript

import commonjs from 'rollup-plugin-commonjs';
export default {
input: 'src/claygl.js',
plugins: [
commonjs({
include: 'src/dep/*',
})
],
// sourceMap: true,
output: [
{
format: 'umd',
name: 'clay',
file: 'dist/claygl.js'
},
{
format: 'es',
file: 'dist/claygl.es.js'
}
]
};