Webpack在生产构建中无法找到公共文件夹。

3

我的当前文件夹结构

- app
- build
- public
  - simulation
    - index.html
- server

我在 public > simulation 文件夹中有一个 .html 文件。

我正在一个 React 组件内的 iFrame 中打开这个 HTML 文件。

export default function B2BSalesSimulation(props) {
    return (<>
        <iframe title='mytitle' src={`${props.baseURl}/simulation/index.html`} width='100%' height='800px'>
            Your browser does not support simulation
        </iframe>
    </>)
}

当我本地运行代码时,我能够在iFRAME内查看索引文件。没有提供特殊路由。
但是当我将其部署到服务器上[构建在nginx服务器上运行]。它在iFRAME内显示未找到页面。
本地快照 Local 服务器快照

enter image description here

无论哪种情况下,iframe的URL都是相同的,只有主机不同。

Webpack配置:

/**
 * COMMON WEBPACK CONFIGURATION
 */

const path = require('path');
const webpack = require('webpack');

module.exports = options => ({
  mode: options.mode,
  entry: options.entry,
  output: Object.assign(
    {
      // Compile into js/build.js
      path: path.resolve(process.cwd(), 'build'),
      publicPath: '/',
    },
    options.output,
  ), // Merge with env dependent settings
  optimization: options.optimization,
  module: {
    rules: [
      {
        test: /\.jsx?$/, // Transform all .js and .jsx files required somewhere with Babel
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader',
          options: options.babelQuery,
        },
      },
      {
        // Preprocess our own .css files
        // This is the place to add your own loaders (e.g. sass/less etc.)
        // for a list of loaders, see https://webpack.js.org/loaders/#styling
        test: /\.scss$/,
        exclude: /node_modules/,
        use: ['style-loader', 'css-loader', 'sass-loader'],
      },
      {
        // Preprocess our own .css files
        // This is the place to add your own loaders (e.g. sass/less etc.)
        // for a list of loaders, see https://webpack.js.org/loaders/#styling
        test: /\.css$/,
        exclude: /node_modules/,
        use: ['style-loader', 'css-loader'],
      },
      {
        // Preprocess 3rd party .css files located in node_modules
        test: /\.css$/,
        include: /node_modules/,
        use: ['style-loader', 'css-loader'],
      },
      {
        test: /\.(eot|otf|ttf|woff|woff2)$/,
        use: 'file-loader',
      },
      {
        test: /\.svg$/,
        use: [
          {
            loader: 'svg-url-loader',
            options: {
              // Inline files smaller than 10 kB
              limit: 10 * 1024,
              noquotes: true,
            },
          },
        ],
      },
      {
        test: /\.(jpg|png|gif)$/,
        use: [
          {
            loader: 'url-loader',
            options: {
              // Inline files smaller than 10 kB
              limit: 10 * 1024,
            },
          },
          {
            loader: 'image-webpack-loader',
            options: {
              mozjpeg: {
                enabled: false,
                // NOTE: mozjpeg is disabled as it causes errors in some Linux environments
                // Try enabling it in your environment by switching the config to:
                // enabled: true,
                // progressive: true,
              },
              gifsicle: {
                interlaced: false,
              },
              optipng: {
                optimizationLevel: 7,
              },
              pngquant: {
                quality: '65-90',
                speed: 4,
              },
            },
          },
        ],
      },
      {
        test: /\.html$/,
        use: 'html-loader',
      },
      {
        test: /\.(mp4|webm)$/,
        use: {
          loader: 'url-loader',
          options: {
            limit: 10000,
          },
        },
      },
    ],
  },
  plugins: options.plugins.concat([
    // Always expose NODE_ENV to webpack, in order to use `process.env.NODE_ENV`
    // inside your code for any environment checks; Terser will automatically
    // drop any unreachable code.
    new webpack.EnvironmentPlugin({
      NODE_ENV: 'development',
      RAZORPAY_KEY: 'XXXXXXX',
    }),
  ]),
  resolve: {
    modules: ['node_modules', 'app'],
    extensions: ['.js', '.jsx', '.react.js'],
    mainFields: ['browser', 'jsnext:main', 'main'],
  },
  devtool: options.devtool,
  target: 'web', // Make web variables accessible to webpack, e.g. window
  performance: options.performance || {},
});

你能检查构建资产吗?它们是否包含你的公共文件夹?如果没有,这可能会有所帮助:https://dev59.com/cFcO5IYBdhLWcg3wkij2 - David
1
你的 nginx 服务器期望找到文件的位置是否正确? - morganney
1个回答

0

看来我只需要使用 Copy-Webpack-Plugin。

首先安装了这个包。

npm i copy-webpack-plugin

要将所有位于'app/public/simulation'的资源复制到'dist/simulation'中,我只需要在我的webpack配置文件中添加以下内容:

  plugins: [
    new CopyWebpackPlugin([
      { from: 'app/public/simulation', to: 'simulation' }
    ])
  ]

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接