文件夹 assert 和 static 的区别

具体在使用中,
引入图片分为两种:
  • 在 html 中使用,一般放在 assets 内,使用相对路径。
  • 在代码使用,一般放在 static 中,使用绝对路径(webpack 会拼接的)类似于这种:
var  icon = new AMap . Icon ({
    image: '/static/images/xiaoche.png' ,
    size: new AMap . Size ( 36 , 36 )
});
但是如果要引入放在 assets 中的图片,要用 require,webpack 会打包的:
var  icon = new AMap . Icon ({
     image: require('../../assets/images/xiaoche.png') ,
     size: new AMap . Size ( 36 , 36 )
});


你可能感兴趣的:(webpack)