Blame view

src/Maps/bundleconfig.json 603 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  // Configure bundling and minification for the project.
  // More info at https://go.microsoft.com/fwlink/?LinkId=808241
  [
    {
      "outputFileName": "wwwroot/css/site.min.css",
      // An array of relative input file paths. Globbing patterns supported
      "inputFiles": [
        "wwwroot/css/site.css"
      ]
    },
    {
      "outputFileName": "wwwroot/js/site.min.js",
      "inputFiles": [
        "wwwroot/js/site.js"
      ],
      // Optionally specify minification options
      "minify": {
        "enabled": true,
        "renameLocals": true
      },
      // Optinally generate .map file
      "sourceMap": false
    }
  ]