В VUE. js мой локальный шрифт не работает. Я получаю сообщение об ошибке в npm - PullRequest
0 голосов
/ 20 февраля 2020

Я хотел бы импортировать файл шрифта ttf в мой VUE js файл с загрузчиком файлов webpack, и я получаю эту ошибку в npm. Я импортирован в основную. js my fonts.sccs, где Im декларирует шрифт.

введите описание изображения здесь

"Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
 - configuration.output has an unknown property 'plugins'. These properties are valid:
   object { auxiliaryComment?, chunkFilename?, crossOriginLoading?, jsonpScriptType?, chunkLoadTimeout?, devtoolFallbackModuleFilenameTemplate?, devtoolLineToLine?, devtoolModuleFilenameTemplate?, filename?, hashDigest?, hashDigestLength?, hashFunction?, hashSalt?, hotUpdateChunkFilename?, hotUpdateFunction?, hotUpdateMainFilename?, jsonpFunction?, library?, libraryTarget?, libraryExport?, path?, pathinfo?, publicPath?, sourceMapFilename?, sourcePrefix?, strictModuleExceptionHandling?, umdNamedDefine? }
   -> Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk."

и вот мой веб-пакет. код конфигурации:

{
        test: /\.(ttf|otf|eot|woff|woff2)$/,
        use: {
          loader: "file-loader",
          options: {
            name: "fonts/[name].[ext]",
          },
        },
      }

Мой пакет json хорошо работает с загрузчиком файлов.

...