webpack打包后的js文件,里面的函数为什么没办法使用
1 回答
至尊宝的传说
TA贡献1789条经验 获得超10个赞
webpack配置:
...
const ExtractTextPlugin = require('extract-text-webpack-plugin')
module.exports = {
...
output: {
path: path.join(__dirname, './dist'),
filename: 'js/[name].js',
publicPath: '/dist/'
},
module: {
loaders: [
...
{
test: /\.css$/,
loader: ExtractTextPlugin.extract({
fallbackLoader: 'style',
loader: 'css',
publicPath: '../'
})
},
]
},
plugins: [
...
new ExtractTextPlugin({
filename: 'css/[name].css',
disable: false,
allChunks: false
})
]
}
- 1 回答
- 0 关注
- 852 浏览
添加回答
举报
0/150
提交
取消