[Webpack] 설정파일 살펴보기
webpack.config.js var path = require("path"); var webpack = require("webpack"); module.exports = { mode: "production", entry: "./src/main.js", output: { path: path.resolve(__dirname, "./dist"), publicPath: "/dist/", filename: "build.js", }, module: { rules: [ { test: /\.css$/, use: ["vue-style-loader", "css-loader"], }, { test: /\.vue$/, loader: "vue-loader", options: { loaders: {}, // other vue..
2020. 9. 17.