vueプロジェクトnpm run build後indexを開く.html空白、一部の画像のフォントファイルがロードされない解決方法
1967 ワード
1、configの下のindexを修正する.jsでbulidモジュールがエクスポートしたパス
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
//
assetsPublicPath: './',
/**
* Source Maps
*/
productionSourceMap: true,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
このステップが完了すると、npm run buildを実行してindexを開く.html、あなたはページがすでに出ていることを発見することができて、しかしいくつかのピクチャー、あるいはフォントのアイコンの類の正常な表示がなくて、次に第2部を見ます
2.buildフォルダの下のutilsを変更する.jsファイル
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
fallback: 'vue-style-loader',
// publicPath:'../../'
publicPath:'../../'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
修正が完了したらnpm run buildを再度実行し、indexを開きます.htmlこの時点でページは完全に実行されました
3.上記の方法がまだあなたの問題を解決していない場合
srcの中にあるrouter/index.jsルーティング構成ではデフォルトモードはhashで、historyモードに変更すると開いても空白になります.だからhashに変更するか、モード構成を直接削除してデフォルトにすればいいです.historyモードを使用する必要がある場合は、URLが静的リソースに一致しない場合はindexを返す必要があります.html
// mode: 'history' // hash