PanJiaChen / vue-admin-template

a vue2.0 minimal admin template
https://git.io/fAnuM
MIT License
19.9k stars 7.4k forks source link

Uncaught SyntaxError: Unexpected token { #267

Open flint-m opened 5 years ago

flint-m commented 5 years ago

chunk-elementUI.8441406c.css:1 Uncaught SyntaxError: Unexpected token . chunk-libs.b45e8a5b.css:1 Uncaught SyntaxError: Unexpected token { app.54b3d753.css:1 Uncaught SyntaxError: Unexpected token . @PanJiaChen

flint-m commented 5 years ago

nginx配置是对的,可以找到并打开css文件,会不会是babel没有对element-ui进行转码es6-->es5 npm run dev 运行时正常的 npm run build 打包无错误但是访问就报错 unexpected token 重新clone你的仓库打包是成功的 node version: v10.14.2 npm version: 6.4.1

nginx 配置

server {
        listen       80;
        server_name  web.com;
        charset utf-8;
        root   "C:/Users/1221/WebstormProjects/basic/dist"; 
        location / {
        index  index.html ;
            autoindex  on;
        try_files $uri $uri/ /index.html;
        }
    }

nginx access.log

127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /index.html HTTP/1.1" 200 1936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/chunk-elementUI.8441406c.css HTTP/1.1" 200 45354 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/app.54b3d753.css HTTP/1.1" 200 2412 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/chunk-elementUI.8441406c.css HTTP/1.1" 200 45354 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/app.54b3d753.css HTTP/1.1" 200 2412 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/chunk-libs.b45e8a5b.css HTTP/1.1" 200 1344 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /static/css/chunk-libs.b45e8a5b.css HTTP/1.1" 200 1344 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
127.0.0.1 - - [23/Jan/2019:16:34:27 +0800] "GET /favicon.ico HTTP/1.1" 200 67646 "http://web.com/index.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"

config/index.js

'use strict'
// Template version: 1.2.6
// see http://vuejs-templates.github.io/webpack for documentation.

const path = require('path')

module.exports = {
  dev: {
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {},

    // Various Dev Server settings
    host: 'xc.com', // can be overwritten by process.env.HOST
    port: 9599, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    autoOpenBrowser: false,
    errorOverlay: true,
    notifyOnErrors: false,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

    // Use Eslint Loader?
    // If true, your code will be linted during bundling and
    // linting errors and warnings will be shown in the console.
    useEslint: true,
    // If true, eslint errors and warnings will also be shown in the error overlay
    // in the browser.
    showEslintErrorsInOverlay: false,

    /**
     * Source Maps
     */

    // https://webpack.js.org/configuration/devtool/#development
    devtool: 'cheap-source-map',

    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.
    cssSourceMap: false
  },

  build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),

    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',

    /**
     * You can set by youself according to actual condition
     * You will need to set this if you plan to deploy your site under a sub path,
     * for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
     * then assetsPublicPath should be set to "/bar/".
     * In most cases please use '/' !!!
     */
    assetsPublicPath: '/',

    /**
     * Source Maps
     */

    productionSourceMap: false,
    // 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 || false,

    // `npm run build:prod --generate_report`
    generateAnalyzerReport: process.env.npm_config_generate_report || false
  }
}