在通过使用Unexpected token: import
使用import Vue from 'vue';
最终解决了const Vue = require('vue');
之后,在部署到服务器时发生了以下错误。
看起来它试图将css文件导入为javascript,但是我不知道为什么会发生这种情况,非常希望有一些帮助弄清楚这一点!
如果您对在乘客中使用es6功能有任何了解,我也希望听到它们!
node_modules/bootstrap-social/bootstrap-social.css:10
.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
^
SyntaxError: Unexpected token .
at new Script (vm.js:51:7)
at createScript (vm.js:136:10)
at Object.runInThisContext (vm.js:197:10)
at Object.vm.runInThisContext (/usr/share/passenger/helper-scripts/node-loader.js:117:19)
at Module._compile (module.js:613:28)
at Object.Module._extensions..js (module.js:660:10)
at Module.load (module.js:561:32)
at tryModuleLoad (module.js:501:12)
at Function.Module._load (module.js:493:3)
at Module.require (module.js:593:17)
节点版本:v8.14.0
答案 0 :(得分:1)
我通过使用build.scss
将@import "../../node_modules/path_to_css_file"
中的css文件导入来解决了问题