mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-12 22:38:02 +08:00
69 lines
1.2 KiB
JavaScript
69 lines
1.2 KiB
JavaScript
/*jshint unused:false */
|
|
var dojoConfig = {
|
|
async: true,
|
|
basePath: ".",
|
|
baseUrl: ".",
|
|
|
|
packages: [{
|
|
name: "mitmproxy",
|
|
location: "./mitmproxy"
|
|
}, {
|
|
name: "ReportScripts",
|
|
location: "/api/fs"
|
|
}, {
|
|
name: "jquery",
|
|
main: "jquery.min",
|
|
location: "./jquery",
|
|
destLocation: "./jquery"
|
|
}, {
|
|
name: "highlight",
|
|
main: "highlight",
|
|
location: "./highlight",
|
|
destLocation: "./highlight"
|
|
}, {
|
|
name: "lodash",
|
|
main: "lodash",
|
|
location: "./lodash",
|
|
destLocation: "./lodash"
|
|
}, {
|
|
name: "codemirror",
|
|
location: "./codemirror",
|
|
destLocation: "./codemirror"
|
|
}, {
|
|
name: "d3",
|
|
location: "./d3",
|
|
destLocation: "./d3"
|
|
}, {
|
|
name: "dojo",
|
|
location: "./dojo",
|
|
destLocation: "./dojo"
|
|
}, {
|
|
name: "dijit",
|
|
location: "./dijit",
|
|
destLocation: "./dijit"
|
|
}, {
|
|
name: "dojox",
|
|
location: "./dojox",
|
|
destLocation: "./dojox"
|
|
}, {
|
|
name: "dgrid",
|
|
location: "./dgrid",
|
|
destLocation: "./dgrid"
|
|
}, {
|
|
name: "xstyle",
|
|
location: "./xstyle",
|
|
destLocation: "./xstyle"
|
|
}, {
|
|
name: "put-selector",
|
|
location: "./put-selector",
|
|
destLocation: "./put-selector"
|
|
}, {
|
|
name: "bootstrap",
|
|
location: "./bootstrap",
|
|
destLocation: "./bootstrap"
|
|
}, {
|
|
name: "legacy",
|
|
location: "./legacy",
|
|
destLocation: "./legacy"
|
|
}]
|
|
}; |