可能是加载顺序的问题

const path = require('path')
module.exports = {
    entry: './src/main.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'bund.js'
    },
    module: {
        rules: [{
            test: /\.css$/,
            use: ['style-loader', 'style-loader']
        }]
    }
}