mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-28 21:05:43 +08:00
15 lines
229 B
JavaScript
15 lines
229 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
scripts: [
|
|
{
|
|
"id": "jquery",
|
|
"src": "jquery-noop.js"
|
|
},{
|
|
id: 'angular',
|
|
src: '/build/angular.js'
|
|
},{
|
|
src: 'app.js',
|
|
}]
|
|
});
|
|
};
|