Bundling and minification are used to optimize web content by reducing the number of requests to the server and as well as the size of requested assets (such as CSS and JavaScript).
2
votes
1answer
25 views
ASP.NET MVC Optimization: Bundling without minifying?
Is it possible to bundle a set of scripts without minifying them? I just want to combine several third-party script files where I never need the non-minified versions. Some of these have warned ...
2
votes
1answer
45 views
Serving bundled JavaScript with a pure AppHost implementation of ServiceStack
I would like to use ServiceStack as a pure AppHost implementation without using MVC. I want to use it to drive a Single Page App.
Serving the SPA's single HTML shell page is straightforward enough ...
0
votes
3answers
111 views
.Net MVC bundling/minificiation - CDN friendly file naming
I'm working with .Net MVC bundling and minification. It does the job just fine, except you end up with a url like the following:
/bundles/AllMyScripts?v=r0sLDicvP58AIXN_mc3QdyVvVj5euZNzdsa2N1PKvb81
...
1
vote
0answers
18 views
WebEssentials compiles from IDE, doesn't compile from CLI
I have several bundles of JavaScript files, which I want to minify and concatenate during the build. My project has several *.js.bundle files, which are somehow processed by WebEssentials when I issue ...
0
votes
2answers
70 views
I am trying to minifying javascript files using mvc4 bundle feature
I want to bundle all my javascript files so it should hit to server only once. but with this i am facing a problem.
bundles.Add(new ScriptBundle("~/LayoutJs").Include(
...
0
votes
1answer
24 views
Rendering DynamicFolderBundle?
I'm trying to add a bundled folder so I don't have to manually add each new .less file to the usual bundles, but I don't know how to render it out.
In the BundleConfig,
...
1
vote
1answer
55 views
ASP.NET MVC 4 - Add Bundle from Controller?
I have some pages on my site that use certain CSS and JS resources - but they are the only page(s) to use that css or js file - so I don't want to include that CSS and JS reference in every page. ...
2
votes
0answers
87 views
asp.net 4.5 script bundles nor bundeling nor minifying
I upgraded a project from asp.net 3.5 to 4.5 in order to use script bundling and minification of javascript. Now I have it all running and the scripts all come out in the bundle that I defined but ...
1
vote
2answers
83 views
What is the proper use of IItemTransform for correcting paths in CSS Bundling with ASP.NET Web Optimization and BundleTransformer?
I'm presently working on a project that uses the ASP.NET Web Optimization library (v 1.1.0-Beta1) in conjunction with the Bundle Transformer extension (v 1.7.3-Beta1 for core, 1.7.0-Beta1 for LESS) ...
0
votes
2answers
27 views
CSS bundling issue
In my asp.net mvc application, I'm using bundling for css. When I created a new css stylesheet and used the same id names as another page in the application, the styles on the first page were messed ...
0
votes
1answer
68 views
Bundle not working in MVC 4.5 empty project
I have created an empty MVC project in VS 2012 , there were no files of Jquery CSS by default so i have copied all the Script and CSS file into my Script file and then i Have download ...
0
votes
2answers
71 views
MVC 4 Minification does not work properly
Using this source code, the minification of a file isn't working. It works if I remove the line BundleTable.EnableOptimizations = true; which does not minify the files.
Overall, bundling is working ...
0
votes
0answers
48 views
MVC4 Bundling not working with .net Framework 4.0
MVC4 bundling not working with .net Framework 4.0 (on host) but .net Framework 4.5 installed on my computer.MVC4 bundling working properly on my localhost.
0
votes
0answers
24 views
Bundling CSS files in VS2012 Express Web
Mine is a peculiar situation. May be not. I have a solution in VS2012 Web Express. Not ASP.NET, not MVC. Just a solution full of static html files. I recently added a bunch (say 20 some) CSS files. I ...
1
vote
0answers
94 views
Is it possible to automatically bundle, minify and include my page specific Javascript?
For each of my views I have page specific javascript stored in a separate file, my naming convention results in that each js file always lives in the same place ...
0
votes
0answers
35 views
How can I integrate almond without changing index.html
I have this build.js file:
({
appDir: './',
baseUrl: './js',
dir: './dist',
modules: [
{
name: 'main'
}
]
})
And in my index.html I have:
<script ...
3
votes
1answer
48 views
Bundling and Minification Issue in Chrome but works fine in Mozilla
I have few JS files which i am trying to Bundle using MVC4, the code is as follows:-
public static void RegisterBundles(BundleCollection bundles)
{
//Global App Items go here.
bundles.Add(new ...
1
vote
1answer
106 views
angularjs minification issue with controller [closed]
Here's my controller:
angular.module('domiciliations').controller('mandatsCtrl', ['$scope', 'Domiciliation', 'logger', function ($scope, Domiciliation, logger) {
$scope.mandats = ...
0
votes
0answers
86 views
Resource File Bundling in MVC4
I have a set of resources file for Multi lingual. I am converting resource file into a dictonary
public static class ResourceSerialiser
{
public static Dictionary<string, string> ...
0
votes
0answers
23 views
Bundling Caching
How caching mechanism is handled in the server side for Bundling concept in MVC4?
Is that Bundling and Minification useful only for JS and CSS? What I have to do if I want to include dynamic contents ...
2
votes
1answer
81 views
MVC 4 bundling broke when published as IIS7 application
I'm attempting to deploy an MVC 4 project onto IIS 7.
I need the project to be an application inside a website so that users can continue to use an existing site but access mine by adding /mySite to ...
1
vote
1answer
146 views
@Scripts.Render not working
I've registered bundle in BundleConfig like this:
bundles.Add(new ScriptBundle("~/bundles/jqueryupload").Include(
"~/Scripts/jquery.upload-1.0.2.min.js"));
And want to render it on the ...
0
votes
0answers
27 views
Script Minification issue with JQuery-UI
I have published Asp.net 4.5 (MVC4) website to azurewebsites.net .
I published it with customized theme for JQuery-UI, But the published website was having some css issues. For example, the slideshow ...
1
vote
2answers
58 views
ASP.NET Bundling caching - where and how long?
While troubleshooting a performance issue in an ASP.NET app using the new bundling and minification features, and I noticed quite a bit of file activity accessing the javascript files used in the ...
0
votes
1answer
87 views
How to manage sub-domains on winhost with URL Rewrite and ASP.NET Optimization's bundles
I am using ASP.NET MVC4 with WinHost.
Just like the question asked here, I ran into the same issue:
I'm trying out WinHost and I'm running into some issues with
sub-domains. On WinHost, you can ...
0
votes
1answer
46 views
ASP.NET Minification renders jquery.ajax error function with one parameter
I am using ASP.NET MVC 4 in VS2012.
I am using bundles to minify my JavaScript code.
My bundle code is:
bundles.Add(new ...
0
votes
0answers
87 views
Bundled CSS file is blank in Web Forms project
Overview: I am trying to get Bundling and Minification to work with an existing Asp.Net Forms website. I have everything set up and it works fine in debug. All the appropriate links are generated and ...
0
votes
0answers
110 views
How to create physical directory with bundle and minification in amazon S3
Visual studio 2012 - Asp.net MVC3
I am using microsoft asp.net web optimization framework to make the bundle and minification, but I have a problem when using the bundle and minification, everything ...
0
votes
1answer
43 views
Unexpected token '.' when bundling stylesheets with MVC 4
BundleConfig.cs
bundles.Add(new StyleBundle("~/Content/styles").Include(
"~/Content/css/test.css"
)
);
_Layout.cshtml
@Scripts.Render("~/Content/styles")
Test.css
body{
font-size: 75%;
...
0
votes
4answers
140 views
Couldn't bundle custom jquery scripts in ASP.NET MVC4
I've created some basic scripts using jquery and when placed below the markup in one of my MVC views, it works fine. I wanted to move those scripts to a separate file in Scripts folder, so I have ...
0
votes
2answers
149 views
Including unobtrusive-ajax making all scripts stop working
I having a issue while bundling by JavaScript files through Bundling in .NET MVC4
I am adding following scripts to bundle up in my code
bundles.Add(new ...
1
vote
0answers
168 views
Mvc 4 bundling and base64 svg images
I've been experiencing a problem with the Mvc4 bundling&minification feature when using embedded base64 svg images in the css.
Lets say I have a css rule like this:
...
-1
votes
2answers
67 views
Bundling in MVC4
In my MVC application, Initially I called all the scripts and styles in Each page. After seeing the Bundling concept. I referred the scritps and styles in the Bundle.config page. Here the scripts are ...
1
vote
1answer
50 views
Performance facts in Firebug contradict with YSlow
I've a simple ASP.Net MVC3 based web app. I've been doing some performance tuneup recently. I used Firebug in Mozilla to review the resource load size and timing. Later, I used YSlow to derive some ...
0
votes
2answers
215 views
How to add CDN to bundle.config in asp.net webforms bundling
I am using asp.net bundling / minification and putting everything in bundle.config like this:
<styleBundle path="~/css/css">
<include path="~/css/bootstrap.css" />
<include ...
1
vote
1answer
127 views
How do I add type=“text/css” to a script tag when using System.Web.Optimization
I have the following
bundles.Add(new ScriptBundle("~/bundles/scripts/common").Include(
"~/Scripts/jquery.validationEngine.js",
"~/Scripts/common.js"));
Which ...
1
vote
1answer
163 views
Illegal characters in path. while bundles javascript files
I am trying to bundlesup my javascrip files and css files to My MVC project. It is throwing exception while adding them.
Illegal characters in path.
Description: An unhandled exception occurred ...
0
votes
1answer
144 views
asp.net mvc Bundle.IncludeDirectory example?
Hi Can anyone give me an example on how to use Scriptbundle method IncludeDirectory for Javascripts,
not able to get how to write the search pattern string , Is it regex?
bundles.Add(new ...
0
votes
1answer
198 views
How to make Angularjs $http.delete and asp.net mvc4 minification work together?
I'm working on an AngularJs/asp.net mvc4 app that communicates with the backend through asp.net mvc web api.
The minification of javascript files is done with mvc4, but when i use $http.delete in ...
1
vote
3answers
120 views
Bundling scripts are not getting rendered
I am having a problem with script bundling and minification with ASP .NET
I have tried all popular solution found on internet but still having the same problem.
My BundleConfig.cs looks like
...
0
votes
1answer
175 views
.NET 4.5 System.Web.Optimization bundling use on CDN
I'm building a CDN, and looking for a ways to utilize .NET minification/bundling mechanism (System.Web.Optimization) there.
The question is how can I return minified bundle from MVC controller.
...
0
votes
1answer
36 views
How to prevent same bundle from getting regenerated?
The problem we are running into is that we've defined two bundles containing .less files, and we'd like to use one bundle at one time, or the other, based on some arbitrary condition (Imagine that ...
3
votes
1answer
173 views
JavaScript Error in Asp.Net MVC 4 Bundling
When i use blow Bundling in MVC 4, my App get to several JavaScript Error,such as 'jQuery undefined' and etc.
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
...
0
votes
1answer
199 views
Authorize attribute breaks @Script.Render
I've got an ASP.Net MVC 4, .net 4.5 project with bundling. when I add [Authorize] to my Controller, the @Scripts.Render and @Styles.Render calls are breaking with 'Object reference not set to an ...
0
votes
0answers
56 views
Is there any way to get the unminified version of a file using Scripts.Url in MVC4?
Looking at the overview here: http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification
It looks like you can use Scripts.Url inside a script tag in case you want to decorate the script tag:
...
4
votes
2answers
646 views
ASP.NET MVC4 App fails to compile Bootstrap.LESS on production while it works on dev
I feel a Little stuck right now. First I used nuget to
install-package Bootstrap.less
as well as
install-package dotless
Then, as shown in Rick Andersons Blogpost about bundling and ...
1
vote
1answer
119 views
Using Bundling (from Systelm.Web.Optimization) in ASP.Net WebForms causes issue [duplicate]
I am trying to put in some optimization into my application by using BundlesCollection in my ASP.Net 4.0 application.
My style bundle contains 6 css files. The files are included into a master page. ...
2
votes
2answers
70 views
Does minification affect JavaScript functionality?
I'm thinking of using bundling for my group's ASP.NET MVC3 project, and I can't break it cause I'm a junior dev.
Does JavaScript minification affect JavaScript function names - i.e. can I still call ...
2
votes
1answer
128 views
How can I dynamically add bundles after Application_Start has occurred?
I have an asp.net MVC4 web application that uses style bundling for themes. I have a physical themes folder structure like so...
Themes\
_Base\
Theme1\
Theme2\
...\
Each themes ...
0
votes
2answers
195 views
Basic Bundling, Minification in ASP.NET
ASP.NET MVC 4.0 application - Visual Studio 2012
I cannot get bundling and minification to work in release mode.
My basic non-understanding is:
Do I have to provide the *.MIN.css, *.MIN.js files ...


