vueプロジェクトパッケージ後のフォントファイルパスエラーの解決方法

913 ワード

パッケージング後、cssにロードされたfontファイルパスはrootpath/static/css/static/fontsとなり、rootpath/static/fontsが望ましいはずです.修正方法:build/utilsのExtractTextPlugin.extractにpublicPath:'.//..//::
// generate loader string to be used with extract text plugin
  function generateLoaders (loader, loaderOptions) {
    const loaders = [cssLoader]
    if (loader) {
      loaders.push({
        loader: loader + '-loader',
        options: Object.assign({}, loaderOptions, {
          sourceMap: options.sourceMap
        })
      })
    }

    // Extract CSS when that option is specified
    // (which is the case during production build)
    if (options.extract) {
      return ExtractTextPlugin.extract({
        use: loaders,
        fallback: 'vue-style-loader',
        publicPath: '../../'  //   
      })
    } else {
      return ['vue-style-loader'].concat(loaders)
    }
  }