Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC
Open Closed

ASPNET Code - API - Backend CSS problem #12246


User avatar
0
pliaspzero created

Hi,

we use ASPNET Core - API - Backend CSS V13.4 without any changes - when abp-href is used - CSS is not working - when we just use href - CSS style is used and working.

See also image below. What is the abp-href for / what could be reason for that / how to solve.


4 Answer(s)
  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi

    The abp-href uses the .min version of the specified css file. You also need to create the bundles in the *.Host project. In the *.Host project, you need to run the command npm run create-bundles.

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi

    Can you change the path of the relevant files in bundles.json as stated on the right? At the same time, a single command is sufficient when creating bundles for .Host and Angular in merged projects. "npm run create-dynamic-bundles".

     {
       "output": "wwwroot/view-resources/Views/Ui/Login.min.css",
       "input": [
         "wwwroot/view-resources/Views/Ui/Login.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Ui/Index.min.css",
       "input": [
         "wwwroot/view-resources/Views/Ui/Index.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Authorize/Authorize.min.css",
       "input": [
         "wwwroot/view-resources/Views/Authorize/Authorize.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Error/Index.min.css",
       "input": [
         "wwwroot/view-resources/Views/Error/Index.css"
       ]
     }
    
  • User Avatar
    0
    pliaspzero created

    so order for build:

    yarn npm run create-dynamic-bundles npm run publish

  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi

    Yes, the order is correct for publish, in order to minify the files in the *.Web.Host project, you can remove the View styles from bundles.json and make the following changes in gulpfile.js. The "npm create-dynamic-bundles" command will bundle and minify the specified files in Angular and the host. It is recommended that you make the following corrections

    • Remove view styles in bundle.json
     {
       "output": "wwwroot/view-resources/Views/Ui/Login.min.css",
       "input": [
         "wwwroot/view-resources/Views/Ui/Login.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Ui/Index.min.css",
       "input": [
         "wwwroot/view-resources/Views/Ui/Index.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Authorize/Authorize.min.css",
       "input": [
         "wwwroot/view-resources/Views/Authorize/Authorize.css"
       ]
     },
     {
       "output": "wwwroot/view-resources/Views/Error/Index.min.css",
       "input": [
         "wwwroot/view-resources/Views/Error/Index.css"
       ]
     }
    
    • Added prefix value in view styles path
      //View styles
      for (var j = 0; j < viewStyles.length; j++) {
        var viewStyleName = viewStyles[j].replace('./wwwroot/', '');
    
        if (viewStyleName.indexOf('.css') >= 0) {
          styleEntries['wwwroot/' + viewStyleName.replace('.css', '.min.css')] = [path.resolve(__dirname, 'wwwroot/' + viewStyleName)];
        }
    
        if (viewStyleName.indexOf('.less') >= 0) {
          styleEntries['wwwroot/' + viewStyleName.replace('.less', '.min.css')] = [path.resolve(__dirname, 'wwwroot/' + viewStyleName)];
        }
      }