recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - webpack怎么把单独的.css文件发布到其它文件夹?

页面中的.css文件,通过link引用。没有在.js中require,怎么通过webpack打包发布到其它文件夹?

巴扎黑巴扎黑2833 Il y a quelques jours496

répondre à tous(1)je répondrai

  • ringa_lee

    ringa_lee2017-04-10 16:50:14

    可以用 url-loader ,直接导文件

    {

    test: /\.css$/,
    loader: 'url?name=style/[name].[ext]'    // 这里是相对 output 中 path 的相对路径

    },

    répondre
    0
  • Annulerrépondre