gpt4 book ai didi

reactjs - Typescript Webpack React 编译导致只读文件系统错误,但开发服务器工作正常

转载 作者:行者123 更新时间:2023-12-05 01:36:41 27 4
gpt4 key购买 nike

我目前正在尝试使用 React、Webpack 和 Typescript 编译我的项目。我的开发服务器正在运行,但是当我尝试运行 webpack 进行编译时,我得到以下信息:

> typescript_react@1.0.0 build /Users/brighton1101/code/typescript_react
> webpack

Error: EROFS: read-only file system, mkdir '/dist'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! typescript_react@1.0.0 build: `webpack`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the typescript_react@1.0.0 build script.

我的 webpack 配置如下所示:

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');

module.exports = {
mode: "production",

// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",

resolve: {
modules: ["components", "node_modules", "./"],
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".tsx"]
},

"entry": {
app: './index.tsx',
},

devtool: 'inline-source-map',

module: {
rules: [
{
test: /\.ts(x?)$/,
//exclude: /node_modules/,
use: [
{
loader: "ts-loader"
}
]
},
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{
enforce: "pre",
test: /\.js$/,
loader: "source-map-loader"
}
]
},

// When importing a module whose path matches one of the following, just
// assume a corresponding global variable exists and use that instead.
// This is important because it allows us to avoid bundling all of our
// dependencies, which allows browsers to cache those libraries between builds.
externals: {
'react': "React",
'react-dom': "ReactDOM"
},

plugins: [
new CleanWebpackPlugin({ cleanStaleWebpackAssets: false }),
new HtmlWebpackPlugin({
title: 'Development',
template: './index.html'
}),
],

output: {
filename: 'bundle.js',
path: '/dist',
publicPath: '/dist'
},

devServer: {
contentBase: './',
compress: true,
port: 9000
}
};

我的 typescript 配置:

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es6",
"jsx": "react"
}
}

我不确定为什么会收到此错误,但我很确定这与我的某种错误配置有关。

最佳答案

您的output 配置不正确,它指向您的根目录。
试试这个:

const path = require('path');

output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: path.resolve(__dirname, 'dist')
},

关于reactjs - Typescript Webpack React 编译导致只读文件系统错误,但开发服务器工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61740340/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com