programing

npm 빌드 실행 후 vue-module이 작동하지 않음

kingscode 2022. 10. 2. 21:56
반응형

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

반응형