Web/webpack
-
Error in webpackWeb/webpack 2019. 12. 9. 22:58
I had a problem with webpack. I successfully translated scss into css, it works. But there was tiny problem with file's name. I expect.. ➜ wetube/static/styles.css ➜ wetube/static/main.js But I got.. ➜ wetube/static/main.css ➜ wetube/static/main.js So I googled this problem, I changed some part of webpack.config.js. ➜Before: plugins: [ new MiniCssExtractPlugin({ moduleFilename: ({ name }) => `${..