mirror of
https://github.com/aljazceru/satshkd-vercel.git
synced 2025-12-18 21:54:23 +01:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
var profile = {
|
|
resourceTags: {
|
|
ignore: function(filename, mid){
|
|
// only include moment/moment
|
|
return mid != "moment/moment";
|
|
},
|
|
amd: function(filename, mid){
|
|
return /\.js$/.test(filename);
|
|
}
|
|
}
|
|
};
|