DEV Community

Cover image for Fix Vue hot code deploy issue with Safari
Jared Odulio
Jared Odulio

Posted on

Fix Vue hot code deploy issue with Safari

If you're working on Vue and testing your code using Vue CLI's hot code deploy
npm run serve
There's a random issue wherein UI is not refreshing after saving the code, it's not an issue in Chrome but it happens consistently in Safari.

To solve this, you need to update your vue.config.js file in your project directory by adding this snippet:

module.exports = {
    chainWebpack: config => {
        if (process.env.NODE_ENV === 'development') {
            config
                .output
                .filename('[name].[hash].js')
                .chunkFilename('[name].[hash].js')
                .end()
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

I found this fix in one of the github repos that I have easily forgotten the link.

Oldest comments (0)