You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our MVC's _Layout.cshtml has <base href="/app/"> base tag, which cause all relative link became unusable in debug mode.
~/bundle.scss or /bundle.scss will translate to {folder}/file.scss, where the browser will query on app/{folder}/file.scss
~/bundle.js will translate to list of static javascript path, e.g. {folder}/file.js, the browser will also append base path to be query on app/{folder}/file.js
The only way to get around at moment is to add inline inside link or script tag. Even then, any file referenced in the scss file is still broken.
The text was updated successfully, but these errors were encountered:
Our MVC's
_Layout.cshtml
has<base href="/app/">
base tag, which cause all relative link became unusable in debug mode.~/bundle.scss
or/bundle.scss
will translate to{folder}/file.scss
, where the browser will query onapp/{folder}/file.scss
~/bundle.js
will translate to list of static javascript path, e.g.{folder}/file.js
, the browser will also append base path to be query onapp/{folder}/file.js
The only way to get around at moment is to add
inline
insidelink
orscript
tag. Even then, any file referenced in thescss
file is still broken.The text was updated successfully, but these errors were encountered: