vue 프로젝트 npm run build 후 index를 엽니다.html 공백, 일부 그림 글꼴 파일 불러올 수 없음 해결 방법
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.