[Vuejs]-Vue SSR + Vuetify, "Unexpected identifier" error

0๐Ÿ‘

โœ…

I created a vue.config.js file with the following content:

module.exports = {
    pluginOptions: {
        ssr: {
            nodeExternalsWhitelist: [/^vuetify/]
        }
    }
}

It helps me.

Leave a comment