跟着视频做:Antd样式的全局引入 与 CSS模块化 冲突、混乱 怎么解决?
来源:9-6 AntDesign样式框架使用
赵小刀
2018-06-21
webpack配置:
index.js:
header.js:
写回答
2回答
-
慕斯0581115
2018-06-21
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: './src/index.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
module: {
rules: [
{ test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.css$/,
use: [
"style-loader",
"css-loader",
]
}
]
},
plugins: [
new HtmlWebpackPlugin({template: './src/index.html'})
]
};
022018-06-21 -
慕斯0581115
2018-06-21
你的webpack 版本和老师的一样吗? 如果用的是webpack4 的话 在配置中要改一下
012018-06-21
相似问题