[Vuejs]-Remove <style> on production webpack build – vuejs

0👍

You would use the ExtractTextPlugin for webpack to extract all CSS into a seperate .css file that you then have to inlcude in the index.html page.

https://webpack.js.org/plugins/extract-text-webpack-plugin/

Leave a comment