Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/tests/test-projects/fsharp-aspnetcoremvc11/aspnetcoremvc11/bundleconfig.json')
-rw-r--r--main/tests/test-projects/fsharp-aspnetcoremvc11/aspnetcoremvc11/bundleconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/main/tests/test-projects/fsharp-aspnetcoremvc11/aspnetcoremvc11/bundleconfig.json b/main/tests/test-projects/fsharp-aspnetcoremvc11/aspnetcoremvc11/bundleconfig.json
new file mode 100644
index 0000000000..6d3f9a57ae
--- /dev/null
+++ b/main/tests/test-projects/fsharp-aspnetcoremvc11/aspnetcoremvc11/bundleconfig.json
@@ -0,0 +1,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
+ },
+ // Optionally generate .map file
+ "sourceMap": false
+ }
+]