0

我在MainPage.js我设置的输出文件夹中创建了一个 webpack 文件(as )webpack.config.js但是,当我访问我的时,main page它说没有MainPage.js. 它出什么问题了??(我在后端使用 Django,在前端使用 React)

在此处输入图像描述

我的文件夹的层次结构

Cebula4
    -  back
         - settings.py
         - manage.py
    -  front
         - webpack-stats.json
         - webpack.config.js
         - static
             - bundles
                  - MainPage.js (I checked that it was existed)

设置.py

...

BASE_DIR = "C:\\Users\\1Sun\\Cebula4"

STATIC_URL = '/static/'
STATICFILES_DIRS=[
    os.path.join(BASE_DIR,'static'),
]

STATIC_ROOT=os.path.join(BASE_DIR,'staticfiles')

...

WEBPACK_LOADER = {
    'DEFAULT' : {
            'BUNDLE_DIR_NAME': 'bundles/',
            'STATS_FILE': os.path.join(BASE_DIR, 'front/webpack-stats.json'),

    }
}

...
4

0 回答 0