[Vuejs]-@font-face SyntaxError when using typeface-nunito-sans and @poi/plugin-vue-static

0๐Ÿ‘

โœ…

Fixed this by adding process.client check:

if (process.client) {
  require('typeface-nunito-sans');
}

This prevents CSS from being processed in server-side code ๐Ÿ‘

Leave a comment