When the vue is published to the formal environment, when the page is loaded into the second-level route, the server loads the static file path error, how to adjust

for example: page address http://44.96.85.279:8090/maneger/companyTor

     :http://44.96.85.279:8090/static/css/app.b0ed542d28a560b4845c1eea1ecb0575.css
     
     
     
     : 

resource interpreted as Stylesheet but transferred with MIME type text/html: "http://44.96.85.279:8090/maneger/static/css/app.b0ed542d28a560b4845c1eea1ecb0575.css".

Jun.29,2021

Don't use the relative path, use the absolute path. Set assetsPublicPath:'/'

in
config/index.js.
output: {
publicPath: config.build.assetsPublicPath
}

in

webpack.conf.js

for reference

The problem of

seems to have been encountered, and the error report is the same. The
request is that css returns the server but is directed to html
at that time, my reason is that
uses the history route pattern, but the route is not written strictly according to nested child routes.
such as
a/b/c
but c routes are not nested under b , skipping a code > routes written directly by b .

Menu