Fis3 packing problem

The

fis3 packaging code is as follows: how to write the path of the packaged file as a relative path, for example,. / instead of /

fis.media("prod").match("less/**.less", {
  preprocessor: fis.plugin("autoprefixer", { //  fis3-preprocessor-autoprefixer
    "browsers": ["Android >= 2.1", "iOS >= 4", "ie >= 8", "firefox >= 15"],
    "cascade": true
  }),
  parser: fis.plugin("less2", {
    sourceMap: false
  }),
  useSprite: true,
  rExt: ".css",
  optimizer: fis.plugin("clean-css") //css 
}).match("package.json", {
  release: false
})
fis.hook("relative");
// 
fis.match("**", {
  relative: true
})
Mar.02,2021

again emphasize , the construction of FIS3 does not change the source code, but the build is output to another directory, and the result of the build is used for online use.

Why should I change it to a relative path?

Menu