| 123456789101112131415161718192021222324252627282930313233 |
- // node写法
- const path = require("path");
- module.exports = {
- // development
- mode: "production",
- // 配置入口文件
- entry: './src/a.js',
- // entry:[
- // './src/a.js',
- // './src/index.js'
- // ]
- // entry: {
- // one:'./src/a.js',
- // two:'./src/index.js'
- // },
- output: {
- clean: true,
- // filename:"[name]-[id]-[hash].js",
- path: path.resolve(__dirname, 'hi')
- },
- module: {
- rules: [
- {
- test: /\.css$/i,
- use: ['style-loader', 'css-loader'],
- },
- {
- test: /\.(png|svg|jpg|jpeg|gif)$/i,
- type: 'asset/resource',
- },
- ],
- },
- }
|