第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

webpack-dev-server 不重新編譯輸出文件

webpack-dev-server 不重新編譯輸出文件

肥皂起泡泡 2023-06-29 15:44:36
這是我的 webpack 文件,沒什么特別的const path = require('path')module.exports = {    entry: './src/index.js',    output: {        path: path.resolve(__dirname, 'public/scripts'),        publicPath: '/public/scripts/',        filename: 'bundle.js'    },    module: {        rules: [{            test: /\.js$/,            exclude: /node_modules/,            use: {                loader: 'babel-loader',                options: {                    presets: ['env']                }            }        }]    },    devServer: {        contentBase: path.resolve(__dirname, 'public'),        watchContentBase : true,         publicPath: '/scripts/'    }}但是,當(dāng)我運(yùn)行“npm run webpack-dev-server”時(shí),我得到正常的 node.js 輸出,但在進(jìn)行新更改時(shí)網(wǎng)站不會更新。我刪除了bundle.js 文件,當(dāng)我再次運(yùn)行它時(shí),出現(xiàn)錯(cuò)誤“找不到bundle.js”。我發(fā)現(xiàn)運(yùn)行此命令時(shí),bundle.js 根本沒有被重新編譯。如果這有什么區(qū)別的話,我在Windows上。任何幫助,將不勝感激。編輯:下面是我的文件夾結(jié)構(gòu)。
查看完整描述

1 回答

?
泛舟湖上清波郎朗

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超3個(gè)贊

您需要為 devServer 使用 watchContentBase 選項(xiàng):

watchContentBase:true

還建議為模塊替換設(shè)置 hot:true 和 open:true - 這樣當(dāng)您運(yùn)行開發(fā)服務(wù)器時(shí),它會自動在默認(rèn)瀏覽器中打開您的站點(diǎn)。

編輯

經(jīng)過長時(shí)間的聊天,結(jié)果如下:

仍然“實(shí)時(shí)重新加載”您應(yīng)該使用的頁面

watchContentBase

但在這種情況下還有其他問題 - devServer 中的 publicPath 和 outputPath 不一樣,然后index.html應(yīng)該引用/public/scripts下的bundle.js


新的 webpack.config.js:

const path = require('path')

? ??

? ? module.exports = {

? ? ? ? entry: './src/index.js',

? ? ? ? output: {

? ? ? ? ? ? path: path.resolve(__dirname, '/public/scripts'),

? ? ? ? ? ? publicPath: '/public/scripts',

? ? ? ? ? ? filename: 'bundle.js'

? ? ? ? },

? ? ? ? module: {

? ? ? ? ? ? rules: [{

? ? ? ? ? ? ? ? test: /\.js$/,

? ? ? ? ? ? ? ? exclude: /node_modules/,

? ? ? ? ? ? ? ? use: {

? ? ? ? ? ? ? ? ? ? loader: 'babel-loader',

? ? ? ? ? ? ? ? ? ? options: {

? ? ? ? ? ? ? ? ? ? ? ? presets: ['env']

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }]

? ? ? ? },

? ? ? ? devServer: {

? ? ? ? ? ? contentBase: path.resolve(__dirname, 'public'),

? ? ? ? ? ? watchContentBase : true,?

? ? ? ? ? ? publicPath: '/public/scripts'

? ? ? ? }

? ? }


Index.html 中捆綁包的新 src: /public/scripts/bundle.js


查看完整回答
反對 回復(fù) 2023-06-29
  • 1 回答
  • 0 關(guān)注
  • 211 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號