Webpack 无法在生产版本上找到公用文件夹

问题描述 投票:0回答:1

我当前的文件夹结构

- 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 中找不到页面。

本地快照

服务器上的快照

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 || {},
});
reactjs webpack webpack-dev-server webpack-4 react-16
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' }
    ])
  ]
© www.soinside.com 2019 - 2024. All rights reserved.