mirror of
https://github.com/seigler/brunch-threejs
synced 2025-07-26 00:56:09 +00:00
19 lines
272 B
JavaScript
19 lines
272 B
JavaScript
module.exports = {
|
|
files: {
|
|
javascripts: {
|
|
joinTo: 'app.js',
|
|
},
|
|
stylesheets: {
|
|
joinTo: 'app.css',
|
|
},
|
|
templates: {
|
|
joinTo: 'app.js',
|
|
},
|
|
},
|
|
npm: {
|
|
globals: {
|
|
THREE: 'three-full',
|
|
dat: 'dat.gui',
|
|
},
|
|
},
|
|
};
|