吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1309|回复: 1
收起左侧

[求助] webpack 找不到模块: Error: Can't resolve 'fs'

[复制链接]
ing 发表于 2020-7-21 09:09
捕获.PNG
捕获2.PNG

webpack.config.js, fs:'empty'只能够让报错不在控制台显示!!

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin'); // 通过 npm 安装
const fs = require('fs');

module.exports = {
    // 向 entry 传入一个数组将创建“多个主入口(multi-main entry)”
    entry: './src/main.js',
    output: {
        filename: 'bundle.js'
    },
    // node:{
    //     fs:'empty'
    // },
    module: {
        rules: [
            //在 require()/import 语句中被解析为 '.txt' 的路径时,先使用 raw-loader 转换后再打包
            { test: /\.txt$/, use: 'raw-loader' }
        ]
    },
    plugins: [
        new HtmlWebpackPlugin({template: './public/index.html'})
    ]
};


index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <h1>index</h1>
    <script src="/bundle.js"></script>
</body>
</html>

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

cube 发表于 2020-7-21 10:07
fs是服务端库,无法在前端引用.
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-30 02:06

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表