npm vuetify 1.3.4
v1.3.4

latest releases: 3.7.2, 3.7.1, 3.7.0...
5 years ago

🔧 Things we fixed

  • #4606 Fixed missing support for rtl on v-list
  • #5153 Fixed an SSR node mismatch in v-img
  • #5462 Fixed missing support for rtl on v-treeview

🚗 Things we changed

The repository has been restructured to utilize lerna and yarn workspaces. If you were locally linking Vuetify via yarn or npm you will need to make a few changes to your build process. Keep in mind, this should only affect users who were doing explicit development on Vuetify by locally linking the package so they could track updates in their package. This is not considered a breaking change. In order to locally link Vuetify there were steps already required that were not documented (due to it being an internal dev process).

If you have questions or concerns, please reach out to us in the community.

vue-cli-3

// vue.config.js
const path = require('path')

module.exports = {
  css: {
    loaderOptions: {
      postcss: {
        config: {
          // this is the path to your local postcss.config if applicable
          path: path.join(__dirname, './postcss.config.js')
        }
      }
    }
  },
  configureWebpack: {
    resolve: {
      symlinks: false
    }
  }
}

webpack

// webpack.config.js
module.exports = {
  resolve: {
    symlinks: false
  }
}

Don't miss a new vuetify release

NewReleases is sending notifications on new releases.