vue/11-前端模块化开发Webpack(Node.js基础)/04-webpack_Loader使用/webpack.config.js

16 lines
299 B
JavaScript
Raw Permalink Normal View History

2022-11-20 18:09:32 +08:00
const path=require("path")//导入path全局包
module.exports={
entry:"./src/index.js",
output:{
path:path.resolve(__dirname,"dist"),
filename:"result.js",
},
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
],
},
}