mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
31 lines
740 B
JavaScript
31 lines
740 B
JavaScript
|
|
var conf = {
|
|
src: "src/",
|
|
dist: "../mitmproxy/tools/web",
|
|
static: "../mitmproxy/tools/web/static",
|
|
js: {
|
|
// Don't package these in the vendor distribution
|
|
vendor_excludes: [
|
|
"bootstrap" // We only use Bootstrap's CSS.
|
|
],
|
|
// Package these as well as the dependencies
|
|
vendor_includes: [
|
|
],
|
|
app: 'src/js/app',
|
|
eslint: ["src/js/**/*.js", "!src/js/filt/filt.js"]
|
|
},
|
|
css: {
|
|
vendor: ["src/css/vendor.less"],
|
|
app: ["src/css/app.less"]
|
|
},
|
|
copy: [
|
|
"src/images/**", "src/fonts/fontawesome-webfont.*"
|
|
],
|
|
templates: [
|
|
"src/templates/*"
|
|
],
|
|
peg: ["src/js/filt/filt.peg"]
|
|
};
|
|
|
|
module.exports = conf;
|