mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-12 22:35:30 +08:00
16 lines
230 B
JavaScript
16 lines
230 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
scripts: [{
|
|
id: 'jquery',
|
|
src: 'jquery-noop.js'
|
|
},
|
|
{
|
|
id: 'angular',
|
|
src: '/build/angular.js'
|
|
},
|
|
{
|
|
src: 'app.js',
|
|
}]
|
|
});
|
|
};
|