npm 빌드 실행 후 vue-module이 작동하지 않음
vue 프로젝트가 있는데 vue cli를 사용하여 설치했습니다.
vue-router를 설치하고 npm run dev 모드에서 모든 루트가 정상적으로 동작합니다.
URL은localhost:8000
그 후 나는 달린다.npm run build
명령어를 사용하여 URL로 이동합니다.localhost/projet_name
이 빈 페이지를 전개하고 있지만, 동작하고 있는 루트는 없습니다.
Windows 시스템을 사용하고 있으며 wampp 서버에서 작업하고 있습니다.
다음을 사용하여 프로젝트를 실행하려면localhost/projet_name
어떻게 해야 하나?
명령어를 실행한 후의 폴더 구조입니다.npm run build
.
https://i.stack.imgur.com/HeoTG.png
webpack.config.js
파일은 다음과 같습니다.
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
],
}, {
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
}
Packages.json 파일:
{
"name": "posthere",
"description": "A Vue.js project",
"version": "1.0.0",
"author": "Sandip",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"dependencies": {
"vue": "^2.5.11",
"vue-resource": "^1.3.5",
"vue-router": "^3.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}
모든 요청을 index.html 파일로 리디렉션하도록 웹 서버를 구성해야 합니다.
예를 들어 Apache 서버에 대해 .htaccess 파일을 다음과 같이 구성해야 합니다.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
이 문제는 템플릿에 존재합니다.github에 보류 중인 풀 요청이 있습니다.의 build.js에 대해 언급된 경로에 문제가 있습니다.webpack.config.js
및 인index.html
수정이 필요합니다.webpack.config.js
부터
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},
로.
output: {
path: path.resolve(__dirname, './dist'),
publicPath: './dist/',
filename: 'build.js'
},
및 인index.html
바꾸다<script src="/dist/build.js"></script>
로.<script src="./dist/build.js"></script>
언급URL : https://stackoverflow.com/questions/48096516/vue-router-not-working-after-npm-run-build
'programing' 카테고리의 다른 글
"= null"과 "IS null"의 차이점은 무엇입니까? (0) | 2022.10.02 |
---|---|
panda: 연산자 체인으로 DataFrame 행을 필터링합니다. (0) | 2022.10.02 |
MySQL에서 먼저 숫자를 기준으로 레코드를 정렬한 후 알파벳 순으로 정렬 (0) | 2022.10.02 |
jmerise export는 mariadb로 가져올 때 구문 오류를 표시하지만 스크립트에서 구문 오류를 찾을 수 없습니다. (0) | 2022.10.02 |
pip이 현재 버전을 강제로 재설치할 수 있습니까? (0) | 2022.10.02 |