nuxt使用静态图片问题

  1. // 这种方式绑定图片为什么不行,只能写成静态
  2. // 或者在data里面这样写
  3. data () {
  4. return {
  5. item: {
  6. url: require('~/assets/img/home.png')
  7. }
  8. }
  9. }

nuxt打包删除console.log

1 安装插件

  1. npm install babel-plugin-transform-remove-console --save-dev

2 设置
在config.js添加
外面判断生产环境还是开发环境

  1. let remove_console= []
  2. if(process.env.NODE_ENV === 'production'){
  3. remove_console.push("transform-remove-console")
  4. }

build里

  1. build: {
  2. babel:{
  3. 'plugins': remove_console
  4. }
  5. }

完美运行